Skip to content

Commit

Permalink
Run cargo-autoinherit for a few new crates (#4801)
Browse files Browse the repository at this point in the history
* Run cargo-autoinherit for a few new crates

* Sort crates list

* sort
  • Loading branch information
octol authored Aug 27, 2024
1 parent b6c15de commit 279de8a
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ clap_complete = "4.5"
clap_complete_fig = "4.5"
colored = "2.0"
comfy-table = "6.0.0"
console = "0.15.8"
console-subscriber = "0.1.1"
console_error_panic_hook = "0.1"
const-str = "0.5.6"
Expand Down Expand Up @@ -232,6 +233,7 @@ httpcodec = "0.2.3"
humantime = "2.1.0"
humantime-serde = "1.1.1"
hyper = "1.3.1"
indicatif = "0.17.8"
inquire = "0.6.2"
ip_network = "0.4.1"
ipnetwork = "0.16"
Expand All @@ -252,6 +254,7 @@ opentelemetry = "0.19.0"
opentelemetry-jaeger = "0.18.0"
parking_lot = "0.12.1"
pem = "0.8"
petgraph = "0.6.5"
pin-project = "1.0"
pretty_env_logger = "0.4.0"
publicsuffix = "2.2.3"
Expand Down Expand Up @@ -310,6 +313,7 @@ tungstenite = { version = "0.20.1", default-features = false }
url = "2.5"
utoipa = "4.2.0"
utoipa-swagger-ui = "6.0.0"
uuid = "*"
vergen = { version = "=8.3.1", default-features = false }
walkdir = "2"
wasm-bindgen-test = "0.3.36"
Expand Down
2 changes: 1 addition & 1 deletion common/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cipher = { workspace = true, optional = true }
x25519-dalek = { workspace = true, features = ["static_secrets"], optional = true }
ed25519-dalek = { workspace = true, features = ["rand_core"], optional = true }
rand = { workspace = true, optional = true }
serde_bytes = { version = "0.11.15", optional = true }
serde_bytes = { workspace = true, optional = true }
serde_crate = { version = "1.0", optional = true, default-features = false, features = ["derive"], package = "serde" }
subtle-encoding = { workspace = true, features = ["bech32-preview"] }
thiserror = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion common/nym_offline_compact_ecash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ thiserror = { workspace = true }
sha2 = "0.9"
bs58 = { workspace = true }
serde = { workspace = true, features = ["derive"] }
rayon = { version = "1.5.0", optional = true }
rayon = { workspace = true, optional = true }
zeroize = { workspace = true, features = ["zeroize_derive"] }
ff = { workspace = true }
group = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion nym-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async-trait = { workspace = true }
bs58 = { workspace = true }
bip39 = { workspace = true }
bincode.workspace = true
bloomfilter = "1.0.13"
bloomfilter = { workspace = true }
cfg-if = { workspace = true }
clap = { workspace = true, features = ["cargo", "derive"] }
console-subscriber = { workspace = true, optional = true } # validator-api needs to be built with RUSTFLAGS="--cfg tokio_unstable"
Expand Down
2 changes: 1 addition & 1 deletion nym-network-monitor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ clap = { workspace = true, features = ["derive"] }
dashmap = { workspace = true }
futures = { workspace = true }
log = { workspace = true }
petgraph = "0.6.5"
petgraph = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
reqwest = { workspace = true, features = ["json"] }
Expand Down
4 changes: 2 additions & 2 deletions tools/internal/testnet-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ license.workspace = true
anyhow.workspace = true
bip39.workspace = true
bs58.workspace = true
console = "0.15.8"
console = { workspace = true }
cw-utils.workspace = true
clap = { workspace = true, features = ["cargo", "derive"] }
indicatif = "0.17.8"
indicatif = { workspace = true }
rand.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions wasm/zknym-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
async-trait.workspace = true
bs58.workspace = true
getrandom = { version = "0.2", features = ["js"] }
getrandom = { workspace = true, features = ["js"] }
js-sys.workspace = true
wasm-bindgen.workspace = true
serde = { workspace = true, features = ["derive"] }
thiserror.workspace = true
tsify = { workspace = true, features = ["js"] }
uuid = { version = "*", features = ["serde"] }
uuid = { workspace = true, features = ["serde"] }
reqwest = { workspace = true }
wasmtimer = { workspace = true }
zeroize.workspace = true
Expand Down

0 comments on commit 279de8a

Please sign in to comment.