My Cartfile has many libraries. When I do carthage update it goes through all the libraries. That can take very long time.
Is there a way to update just a s
Looks like carthage update repo-name doesn't work on Carthage 0.36.0.
I solved this problem by manually updating Carthage.resolved. For example, add to a Cartfile a new dependency:
github "konkab/AlamofireNetworkActivityLogger" ~> 3.0.0
Add to a Cartfile.resolved a new dependency manually:
github "konkab/AlamofireNetworkActivityLogger" "3.0.0"
Then do carthage bootstrap to only update one dependency:
carthage bootstrap
It will use Carthage.resolved and just add one dependency.