Skip to content

Commit

Permalink
dice-cert-check: Use workspace dependencies.
Browse files Browse the repository at this point in the history
This doesn't touch `const-oid`, `pem-rfc8468` or `x509-cert`. These
dependencies were pulled straight from master and simply switching these
over to use releases from crates.io breaks stuff.
  • Loading branch information
flihp committed Aug 3, 2023
1 parent f3a09e1 commit b4260fe
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ chrono = { version = "0.4.26", default-features=false }
clap = { version = "4", default-features = false }
corncobs = "0.1"
derive_more = "0.99"
env_logger = "0.10"
hex = "0.4"
ecdsa = { version = "0.16", default-features = false }
env_logger = { version = "0.10", default-features = false }
hex = { version = "0.4", default-features = false }
hubpack = "0.1"
log = { version = "0.4", features = ["std"] }
p384 = { version = "0.12.0", default-features = false }
pem = { version = "1", default-features = false }
ring-compat = { version = "0.6", default-features = false }
ron = "0.8"
rpassword = "7.2.0"
salty = { version = "0.2", default-features = false }
Expand Down
20 changes: 10 additions & 10 deletions dice-cert-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ edition = "2021"
# PEM encoded certs. This has been fixed on the development branch but
# hasn't made it into a release yet.
[dependencies]
anyhow = "1.0.68"
clap = { version = "4.1.4", features = ["derive"] }
anyhow = { workspace = true, default-features = true }
clap = { workspace = true, default-features = true, features = ["derive"] }
const-oid = { git = "https://github.com/RustCrypto/formats" }
ecdsa = "0.16"
env_logger = "0.10.0"
hex = "0.4.3"
log = "0.4.17"
p384 = "0.12.0"
env_logger = { workspace = true, default-features = true }
ecdsa = { workspace = true, default-features = true }
hex = { workspace = true, default-features = true }
log = { workspace = true, default-features = true, features = ["std"] }
p384 = { workspace = true, default-features = true }
pem-rfc7468 = { git = "https://github.com/RustCrypto/formats" }
ring-compat = { version = "0.6.0", features = ["std"] }
sha2 = "0.10.6"
thiserror = "1.0.38"
ring-compat = { workspace = true, default-features = true, features = ["std"] }
sha2 = { workspace = true, default-features = true }
thiserror = { workspace = true, default-features = true }
x509-cert = { git = "https://github.com/RustCrypto/formats", features = ["pem", "std"] }

0 comments on commit b4260fe

Please sign in to comment.