Skip to content

Commit

Permalink
Add version to credential dependencies.
Browse files Browse the repository at this point in the history
I forgot to add the version in the dependency declaration for cargo-credential.
  • Loading branch information
ehuss committed Dec 16, 2020
1 parent de42302 commit 382b251
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/credential/cargo-credential-1password/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ repository = "https://github.com/rust-lang/cargo"
description = "A Cargo credential process that stores tokens in a 1password vault."

[dependencies]
cargo-credential = { path = "../cargo-credential" }
cargo-credential = { version = "0.1.0", path = "../cargo-credential" }
serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.59"
2 changes: 1 addition & 1 deletion crates/credential/cargo-credential-gnome-secret/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/rust-lang/cargo"
description = "A Cargo credential process that stores tokens with GNOME libsecret."

[dependencies]
cargo-credential = { path = "../cargo-credential" }
cargo-credential = { version = "0.1.0", path = "../cargo-credential" }

[build-dependencies]
pkg-config = "0.3.19"
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ repository = "https://github.com/rust-lang/cargo"
description = "A Cargo credential process that stores tokens in a macOS keychain."

[dependencies]
cargo-credential = { path = "../cargo-credential" }
cargo-credential = { version = "0.1.0", path = "../cargo-credential" }
security-framework = "2.0.0"
2 changes: 1 addition & 1 deletion crates/credential/cargo-credential-wincred/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ repository = "https://github.com/rust-lang/cargo"
description = "A Cargo credential process that stores tokens with Windows Credential Manager."

[dependencies]
cargo-credential = { path = "../cargo-credential" }
cargo-credential = { version = "0.1.0", path = "../cargo-credential" }
winapi = { version = "0.3.9", features = ["wincred", "winerror", "impl-default"] }

0 comments on commit 382b251

Please sign in to comment.