Run cargo-autoinherit for a few new crates (#4801)
* Run cargo-autoinherit for a few new crates * Sort crates list * sort
This commit is contained in:
@@ -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"
|
||||
@@ -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"
|
||||
@@ -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"
|
||||
@@ -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"
|
||||
|
||||
@@ -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 }
|
||||
|
||||
@@ -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 }
|
||||
|
||||
+1
-1
@@ -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"
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user