Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
269 changes: 137 additions & 132 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ itertools = { version = "0.14.0" }
anyhow = "1.0"
rand = "0.8.5"
hex = "0.4"
clap = { version = "4.5.40", features = ["derive"] }
tracing = "0.1.37"
serde_with = "3.13.0"
clap = { version = "4.5.53", features = ["derive"] }
tracing = "0.1.43"
serde_with = "3.16.1"
prost-types = "0.14"
sui-rpc = "0.1.0"
tonic = "0.14"
Expand Down
2 changes: 1 addition & 1 deletion crates/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ itertools.workspace = true
serde_with.workspace = true
sui-sdk-types.workspace = true

typenum = "1.18.0"
typenum = "1.19.0"

[dev-dependencies]
sui_types = { workspace = true }
2 changes: 1 addition & 1 deletion crates/dkg-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tracing.workspace = true
sui_types.workspace = true
sui-sdk-types.workspace = true
seal-committee = { path = "../seal-committee" }
tokio = { version = "1.46.1", features = ["rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["rt-multi-thread"] }

[[bin]]
name = "dkg-cli"
Expand Down
12 changes: 6 additions & 6 deletions crates/key-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ shared_crypto.workspace = true
move-core-types.workspace = true
mvr_types = { git = "https://github.com/MystenLabs/mvr", rev = "1993d7188f62564b05f0ccab46bbfb24b0eea326", package = "mvr-types" }

tokio = { version = "1.46.1", features = ["full"] }
tokio = { version = "1.48.0", features = ["full"] }
axum = { version = "0.8", features = ["macros"] }
tower-http = { version = "0.6.6", features = ["cors", "limit"] }
tower-http = { version = "0.6.7", features = ["cors", "limit"] }
crypto = { path = "../crypto" }
tap = "1.0.1"
prometheus = "0.13.3"
anyhow = "1.0.79"
anyhow = "1.0.100"
once_cell = "1.20.2"
semver = { version = "1.0.26", features = ["serde"] }
semver = { version = "1.0.27", features = ["serde"] }
jsonrpsee = "0.24.0"
serde_yaml = "0.9"
duration-str = "0.17.0"
Expand All @@ -45,8 +45,8 @@ hostname = "0.4"

sui-sdk-types = { workspace = true }
prometheus_closure_metric = { workspace = true }
hyper-util = "0.1.10"
http-body-util = "0.1.2"
hyper-util = "0.1.17"
http-body-util = "0.1.3"
futures = "0.3"
seal-sdk = { path = "../seal-sdk" }
seal-committee = { path = "../seal-committee" }
Expand Down
2 changes: 1 addition & 1 deletion crates/seal-committee/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ sui-sdk-types.workspace = true
sui_types.workspace = true

[dev-dependencies]
tokio = { version = "1.46.1", features = ["rt-multi-thread"] }
tokio = { version = "1.48.0", features = ["rt-multi-thread"] }
12 changes: 6 additions & 6 deletions crates/seal-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ anyhow.workspace = true
axum = {version = "0.8", default-features = false, features = ["http2", "tokio", "macros"]}
axum-extra = {version = "0.10", features = ["typed-header"]}
base64 = "0.22.1"
bytes = "1.10.1"
bytes = "1.11.0"
clap.workspace = true
const-str = "0.6.2"
git-version = "0.3.9"
Expand All @@ -31,10 +31,10 @@ serde_json.workspace = true
serde_with = {workspace = true, features = ["base64"]}
serde_yaml = "0.9"
snap = "1.1.0"
tokio = {version = "1.44", features = ["full"]}
tokio-util = "0.7.13"
tokio = {version = "1.48", features = ["full"]}
tokio-util = "0.7.17"
tower = "0.4"
tower-http = {version = "0.6.6", features = ["trace", "timeout"]}
tracing-subscriber = {version = "0.3.20", features = ["env-filter"]}
tower-http = {version = "0.6.7", features = ["trace", "timeout"]}
tracing-subscriber = {version = "0.3.22", features = ["env-filter"]}
tracing.workspace = true
uuid = {version = "1.17.0", features = ["fast-rng", "macro-diagnostics", "v7"]}
uuid = {version = "1.19.0", features = ["fast-rng", "macro-diagnostics", "v7"]}
2 changes: 1 addition & 1 deletion crates/seal-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition.workspace = true
license.workspace = true

[dependencies]
chrono = "0.4.39"
chrono = "0.4.42"
serde = { workspace = true }
serde_json = { workspace = true }
fastcrypto = { workspace = true }
Expand Down
Loading