Skip to content

Commit

Permalink
dice-mfg-msgs: Use workspace dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
flihp committed Jul 29, 2023
1 parent d320027 commit 16ff537
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@ members = [
[workspace.dependencies]
anyhow = { version = "1", features = ["backtrace"] }
clap = { version = "4", features = ["derive"] }
corncobs = "0.1"
derive_more = "0.99"
env_logger = "0.10"
hex = "0.4"
hubpack = "0.1"
log = { version = "0.4", features = ["std"] }
ron = "0.8"
serde = "1"
serde = { version = "1", default-features = false }
serde-big-array = "0.4"
serde_json = { version = "1", features = ["std", "alloc"] }
sha2 = "0.10"
thiserror = "1.0.40"
yubihsm = { git = "https://github.com/oxidecomputer/yubihsm.rs", branch="v0.42.0-with-audit", features = ["default", "usb"] }
zerocopy = "0.6"
12 changes: 6 additions & 6 deletions dice-mfg-msgs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ version = "0.2.1"
edition = "2021"

[dependencies]
corncobs = "0.1.3"
hubpack = "0.1"
serde = { version = "1", default-features = false, features = ["derive"] }
serde-big-array = "0.4"
thiserror = { version = "1.0.40", optional = true }
zerocopy = "0.6"
corncobs.workspace = true
hubpack.workspace = true
serde = { workspace = true, features = ["derive"] }
serde-big-array.workspace = true
thiserror = { workspace = true, optional = true }
zerocopy.workspace = true

[features]
std = ["thiserror"]

0 comments on commit 16ff537

Please sign in to comment.