Last active
April 10, 2018 17:38
-
-
Save wagenet/7e59c77311e298ca6e974ba7cfee1708 to your computer and use it in GitHub Desktop.
Cargo Git Dependency Error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my-dep = { git = "https://abc123:@github.com/myuser/my-dep", tag = "v1.0.0" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Updating git repository `https://[email protected]/myuser/my-dep` | |
error: failed to load source for a dependency on `my-dep` | |
Caused by: | |
Unable to update "https://[email protected]/myuser/my-dep?tag=v1.0.0#622b9fa3 | |
Caused by: | |
failed to fetch into /Users/peterwagenet/.cargo/git/db/my-dep-aea0fb97974ff139 | |
Caused by: | |
failed to authenticate when downloading repository | |
attempted to find username/password via git's `credential.helper` support, but failed | |
Caused by: | |
failed to acquire username/password from local configuration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEBUG 2018-04-10T17:35:02Z: cargo::core::registry: load/missing https://[email protected]/myuser/my-dep?tag=v1.0.0#622b9fa3 | |
DEBUG 2018-04-10T17:35:02Z: cargo::sources::config: loading: https://[email protected]/myuser/my-dep?tag=v1.0.0#622b9fa3 | |
TRACE 2018-04-10T17:35:02Z: cargo::core::source::source_id: loading SourceId; https://[email protected]/myuser/my-dep?tag=v1.0.0#622b9fa3 | |
Updating git repository `https://[email protected]/myuser/my-dep` | |
TRACE 2018-04-10T17:35:02Z: cargo::sources::git::source: updating git source `GitRemote { url: "https://[email protected]/myuser/my-dep" }` | |
DEBUG 2018-04-10T17:35:02Z: cargo::sources::git::utils: skipping gc as there's only 0 pack files | |
DEBUG 2018-04-10T17:35:02Z: cargo::sources::git::utils: doing a fetch for https://[email protected]/myuser/my-dep | |
DEBUG 2018-04-10T17:35:02Z: cargo::sources::git::utils: initiating fetch of refs/heads/*:refs/heads/* from https://[email protected]/myuser/my-dep | |
TRACE 2018-04-10T17:35:03Z: git2::cred: credential helper stderr --- | |
TRACE 2018-04-10T17:35:03Z: git2::cred: ignoring output line: | |
DEBUG 2018-04-10T17:35:03Z: cargo::sources::git::utils: fetch failed: failed to acquire username/password from local configuration | |
DEBUG 2018-04-10T17:35:03Z: cargo: exit_with_error; err=CliError { error: Some(Error { code: -1, klass: -1, message: "failed to acquire username/password from local configuration" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment