Skip to content

Commit

Permalink
[refactor]: bump dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Marin Veršić <marin.versic101@gmail.com>
  • Loading branch information
mversic committed Apr 18, 2024
1 parent f1b4013 commit 3c3fb40
Show file tree
Hide file tree
Showing 17 changed files with 455 additions and 413 deletions.
748 changes: 395 additions & 353 deletions Cargo.lock

Large diffs are not rendered by default.

60 changes: 30 additions & 30 deletions Cargo.toml
Expand Up @@ -54,76 +54,76 @@ iroha_executor_derive = { version = "=2.0.0-pre-rc.20", path = "smart_contract/e
iroha_trigger_derive = { version = "=2.0.0-pre-rc.20", path = "smart_contract/trigger/derive" }

test_network = { version = "=2.0.0-pre-rc.20", path = "core/test_network" }
proc-macro2 = "1.0.69"
syn = { version = "2.0.38", default-features = false }
quote = "1.0.33"
proc-macro2 = "1.0.81"
syn = { version = "2.0.60", default-features = false }
quote = "1.0.36"
manyhow = { version = "0.8.1", features = ["darling"] }
darling = "0.20.3"
darling = "0.20.8"
drop_bomb = "0.1.5"

futures = { version = "0.3.30", default-features = false }
tokio = "1.33.0"
tokio-stream = "0.1.14"
tokio = "1.37.0"
tokio-stream = "0.1.15"
tokio-tungstenite = "0.20.1"
tungstenite = "0.20.1"
crossbeam-queue = "0.3.8"
crossbeam-queue = "0.3.11"
parking_lot = { version = "0.12.1" }

once_cell = "1.18.0"
tempfile = "3.8.0"
once_cell = "1.19.0"
tempfile = "3.10.1"
path-absolutize = "3.1.1"
pathdiff = "0.2.1"
bytes = "1.5.0"
bytes = "1.6.0"

vergen = { version = "8.3.1", default-features = false }
trybuild = "1.0.85"
trybuild = "1.0.91"
impls = "1.0.3"

base64 = { version = "0.21.4", default-features = false }
base64 = { version = "0.21.7", default-features = false }
hex = { version = "0.4.3", default-features = false }
nonzero_ext = { version = "0.3.0", default-features = false }

url = "2.4.1"
url = "2.5.0"
prometheus = { version = "0.13.3", default-features = false }

clap = "4.4.6"
clap = "4.5.4"
owo-colors = "3.5.0"
supports-color = "2.1.0"
inquire = "0.6.2"
spinoff = "0.8.0"

criterion = "0.5.1"
expect-test = "1.4.1"
expect-test = "1.5.0"

eyre = "0.6.8"
color-eyre = "0.6.2"
thiserror = { version = "1.0.49", default-features = false }
eyre = "0.6.12"
color-eyre = "0.6.3"
thiserror = { version = "1.0.58", default-features = false }
displaydoc = { version = "0.2.4", default-features = false }

cfg-if = "1.0.0"
derive_more = { version = "0.99.17", default-features = false }
async-trait = "0.1.73"
async-trait = "0.1.80"
strum = { version = "0.25.0", default-features = false }
getset = "0.1.2"
hex-literal = "0.4.1"

rand = { version = "0.8.5", default-features = false, features = ["getrandom", "alloc"] }
warp = { version = "0.3.6", default-features = false }
wasmtime = "15.0.0"
warp = { version = "0.3.7", default-features = false }
wasmtime = "15.0.1"

tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", default-features = false }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", default-features = false }

dashmap = "5.5.3"
rustc-hash = "1.1.0"

serde = { version = "1.0.188", default-features = false }
serde_json = { version = "1.0.107", default-features = false }
serde_yaml = "0.9.29"
serde_with = { version = "3.3.0", default-features = false }
parity-scale-codec = { version = "3.6.5", default-features = false }
serde = { version = "1.0.198", default-features = false }
serde_json = { version = "1.0.116", default-features = false }
serde_yaml = "0.9.34"
serde_with = { version = "3.7.0", default-features = false }
parity-scale-codec = { version = "3.6.9", default-features = false }
json5 = "0.4.1"
toml = "0.8.8"
toml = "0.8.12"

storage = { git = "https://github.com/Erigara/storage.git", rev = "e0afe4b42810e9b3cf067cfbaa63a6ad7af6e2ba" }

Expand Down Expand Up @@ -188,7 +188,7 @@ clippy.string_lit_as_bytes = "warn"
clippy.suspicious_operation_groupings = "warn"
clippy.useless_let_if_seq = "warn"

#cargo
# cargo
clippy.redundant_feature_names = "deny"
clippy.wildcard_dependencies = "deny"

Expand Down
4 changes: 2 additions & 2 deletions client/Cargo.toml
Expand Up @@ -59,7 +59,7 @@ iroha_version = { workspace = true, features = ["http"] }

attohttpc = { version = "0.26.1", default-features = false }
eyre = { workspace = true }
http = "0.2.9"
http = "0.2.12"
url = { workspace = true }
rand = { workspace = true }
serde = { workspace = true, features = ["derive"] }
Expand All @@ -73,7 +73,7 @@ parity-scale-codec = { workspace = true, default-features = false, features = ["
tokio = { workspace = true, features = ["rt"] }
tokio-tungstenite = { workspace = true }
tungstenite = { workspace = true }
futures-util = "0.3.28"
futures-util = "0.3.30"
merge = "0.1.0"
toml = { workspace = true }
nonzero_ext = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion client_cli/Cargo.toml
Expand Up @@ -37,4 +37,4 @@ erased-serde = "0.3.31"

[build-dependencies]
vergen = { version = "8.3.1", default-features = false }
color-eyre = "0.6.2"
color-eyre = "0.6.3"
2 changes: 1 addition & 1 deletion config/Cargo.toml
Expand Up @@ -37,7 +37,7 @@ toml = { workspace = true }
merge = "0.1.0"

[dev-dependencies]
proptest = "1.3.1"
proptest = "1.4.0"
stacker = "0.1.15"
expect-test = { workspace = true }
trybuild = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion config/base/Cargo.toml
Expand Up @@ -22,7 +22,7 @@ eyre = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_with = { workspace = true, features = ["macros", "std"] }
thiserror = { workspace = true }
num-traits = "0.2.17"
num-traits = "0.2.18"

serde_json = { version = "1", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Expand Up @@ -64,8 +64,8 @@ parking_lot = { workspace = true, features = ["deadlock_detection"] }
derive_more = { workspace = true }
nonzero_ext = { workspace = true }

uuid = { version = "1.4.1", features = ["v4"] }
indexmap = "2.1.0"
uuid = { version = "1.8.0", features = ["v4"] }
indexmap = "2.2.6"

[dev-dependencies]
criterion = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion core/test_network/Cargo.toml
Expand Up @@ -25,5 +25,5 @@ rand = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }
unique_port = "0.2.1"
parity-scale-codec = { version = "3.6.5", default-features = false }
parity-scale-codec = { version = "3.6.9", default-features = false }
serde_json = { workspace = true }
24 changes: 12 additions & 12 deletions crypto/Cargo.toml
Expand Up @@ -56,33 +56,33 @@ serde_with = { workspace = true, features = ["macros", "hex"] }
hex = { workspace = true, features = ["alloc", "serde"] }
getset = { workspace = true }

thiserror = { version = "1.0.50", optional = true }
thiserror = { version = "1.0.58", optional = true }
displaydoc = { version = "0.2.4", default-features = false }

digest = { version = "0.10.7", default-features = false, features = ["alloc"] }
blake2 = { version = "0.10.6", default-features = false }
sha2 = { version = "0.10.8", default-features = false }
hkdf = { version = "0.12.3", default-features = false }
hkdf = { version = "0.12.4", default-features = false }
w3f-bls = { version = "0.1.3", default-features = false }

signature = { version = "2.1.0", default-features = false, features = ["alloc"] }
ed25519-dalek = { version = "2.1.0", default-features = false, features = ["alloc", "rand_core", "zeroize"] }
curve25519-dalek = { version = "4.1.1", default-features = false }
x25519-dalek = { version = "2.0.0", default-features = false, features = ["static_secrets"] }
signature = { version = "2.2.0", default-features = false, features = ["alloc"] }
ed25519-dalek = { version = "2.1.1", default-features = false, features = ["alloc", "rand_core", "zeroize"] }
curve25519-dalek = { version = "4.1.2", default-features = false }
x25519-dalek = { version = "2.0.1", default-features = false, features = ["static_secrets"] }

rand = { workspace = true, default-features = false, features = ["std_rng", "alloc"] }
rand_core = { version = "0.6.4", default-features = false, features = ["alloc"] }
rand_chacha = { version = "0.3.1", default-features = false }


zeroize = { version = "1.6.0", default-features = false }
zeroize = { version = "1.7.0", default-features = false }
arrayref = { version = "0.3.7", default-features = false }

aead = { version = "0.5.2", default-features = false, features = ["alloc"] }
chacha20poly1305 = { version = "0.10.1", default-features = false }

elliptic-curve = { version = "0.13.6", default-features = false }
k256 = { version = "0.13.1", default-features = false, features = ["alloc", "ecdsa", "sha256"] }
elliptic-curve = { version = "0.13.8", default-features = false }
k256 = { version = "0.13.3", default-features = false, features = ["alloc", "ecdsa", "sha256"] }

[dev-dependencies]
hex-literal = { workspace = true }
Expand All @@ -91,6 +91,6 @@ serde_json = { workspace = true, features = ["std"] }
# these crypto libraries are not used to implement actual crypto algorithms
# but to test some of the primitives against them
amcl = { version = "0.2.0", default-features = false, features = ["secp256k1"] }
secp256k1 = { version = "0.28.0", features = ["rand", "serde"] }
libsodium-sys-stable = "1.20.3"
openssl = { version = "0.10.59", features = ["vendored"] }
secp256k1 = { version = "0.28.2", features = ["rand", "serde"] }
libsodium-sys-stable = "1.20.5"
openssl = { version = "0.10.64", features = ["vendored"] }
2 changes: 1 addition & 1 deletion futures/Cargo.toml
Expand Up @@ -26,4 +26,4 @@ serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }

[dev-dependencies]
tokio-stream = "0.1.14"
tokio-stream = "0.1.15"
2 changes: 1 addition & 1 deletion logger/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ iroha_data_model = { workspace = true }
color-eyre = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
tracing-core = "0.1.31"
tracing-core = "0.1.32"
tracing-futures = { version = "0.2.5", default-features = false, features = ["std-future", "std"] }
tracing-subscriber = { workspace = true, features = ["fmt", "ansi", "json"] }
tokio = { workspace = true, features = ["sync", "rt", "macros"] }
Expand Down
2 changes: 1 addition & 1 deletion primitives/Cargo.toml
Expand Up @@ -37,7 +37,7 @@ parity-scale-codec = { workspace = true, features = ["derive"] }
derive_more = { workspace = true, features = ["display", "from", "as_ref", "as_mut", "deref", "constructor", "into_iterator"] }
serde = { workspace = true, features = ["derive"] }
serde_with = { workspace = true, features = ["macros"] }
smallvec = { version = "1.11.1", default-features = false, features = ["serde", "union"] }
smallvec = { version = "1.13.2", default-features = false, features = ["serde", "union"] }
smallstr = { version = "0.3.0", default-features = false, features = ["serde", "union"] }
thiserror = { workspace = true, optional = true }
displaydoc = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions primitives/numeric/Cargo.toml
Expand Up @@ -37,7 +37,7 @@ serde_with = { workspace = true, features = ["macros"] }
thiserror = { workspace = true, optional = true }
displaydoc = { workspace = true }

rust_decimal = { version = "1.34", default-features = false, features = ["serde", "serde-with-str"] }
rust_decimal = { version = "1.35", default-features = false, features = ["serde", "serde-with-str"] }

[dev-dependencies]
serde_json = { workspace = true, features = ["alloc"] }
serde_json = { workspace = true, features = ["alloc"] }
2 changes: 1 addition & 1 deletion telemetry/Cargo.toml
Expand Up @@ -24,7 +24,7 @@ iroha_futures = { workspace = true, features = ["telemetry"] }
iroha_telemetry_derive = { workspace = true }

async-trait = { workspace = true }
chrono = "0.4.31"
chrono = "0.4.38"
eyre = { workspace = true }
futures = { workspace = true, features = ["std", "async-await"] }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion tools/parity_scale_decoder/Cargo.toml
Expand Up @@ -27,7 +27,7 @@ iroha_genesis = { workspace = true }
clap = { workspace = true, features = ["derive", "cargo"] }
eyre = { workspace = true }
parity-scale-codec = { workspace = true }
colored = "2.0.4"
colored = "2.1.0"

[build-dependencies]
iroha_data_model = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion tools/wasm_test_runner/Cargo.toml
Expand Up @@ -13,4 +13,4 @@ workspace = true

[dependencies]
wasmtime = { workspace = true }
anyhow = "1.0.75"
anyhow = "1.0.82"
4 changes: 2 additions & 2 deletions wasm_builder/Cargo.toml
Expand Up @@ -14,6 +14,6 @@ workspace = true
[dependencies]
eyre = { workspace = true }
serde_json = { workspace = true, features = ["std"] }
sha256 = "1.4.0"
sha256 = "1.5.0"
path-absolutize = { workspace = true }
wasm-opt = "0.116.0"
wasm-opt = "0.116.1"

0 comments on commit 3c3fb40

Please sign in to comment.