Xcode error "Dependencies could not be resolved", but only when building via command line

I have a project that builds perfectly fine from within Xcode, but it fails when I want to run it from the command line. I get this error:

error: Dependencies could not be resolved because no versions of 'pathkit' match the requirement 1.0.1..<2.0.0 and root depends on 'saga' 1.1.3..<2.0.0. 'saga' >= 1.1.3 practically depends on 'pathkit' 1.0.1..<2.0.0 because 'saga' 1.1.3 depends on 'pathkit' 1.0.1..<2.0.0 and no versions of 'saga' match the requirement 1.1.4..<2.0.0.

My package depends on Saga from 1.1.3, and Saga depends on pathkit from 1.0.1. I'm not sure what's the error going on about, as pathkit 1.0.1 exist and works fine. Here's a screenshot from Xcode, where I have no problems at all: https://i.stack.imgur.com/3ESL1.png.

I've already removed all derived data, that didn't help.

In the end I removed the project, did a clean checkout from git, and now it works again 🤷‍♂️

I solved this problem by opening the project in Xcode and clicking "File - Packages - Reset Package Caches"

Xcode error "Dependencies could not be resolved", but only when building via command line
 
 
Q