How to update just one library from the Cartfile with Carthage? -


my cartfile has many libraries. when carthage update goes through libraries. can take long time.

is there way update single library carthage? this? (this not work)

carthage update "evgenyneu/moa" 

from 0.12 version build, checkout, , update take optional space separated list of dependencies

for cartfile following

github "alamofire/alamofire" github "reactivex/rxswift" 

you choose update 1 dependency

carthage update alamofire 

or multiple dependencies

carthage update alamofire rxswift 

Comments