diff --git a/Cargo.lock b/Cargo.lock index 82b54d7..1fbc7c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -501,9 +501,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.18" +version = "4.5.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3" +checksum = "7be5744db7978a28d9df86a214130d106a89ce49644cbc4e3f0c22c3fba30615" dependencies = [ "clap_builder", "clap_derive", @@ -511,9 +511,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.18" +version = "4.5.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b" +checksum = "a5fbc17d3ef8278f55b282b2a2e75ae6f6c7d4bb70ed3d0382375104bfafdb4b" dependencies = [ "anstream", "anstyle", diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index 7ddee74..2ca119f 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -20,7 +20,7 @@ serde_json = "1.0" serdect = { version = "0.2.0" } itertools = "0.13.0" exitcode = "1.1.2" -clap = { version = "4.5.18", features = ["derive"] } +clap = { version = "4.5.19", features = ["derive"] } reqwest = { version = "0.12.7", features = ["json"] } server = { path = "../server" } tokio = { version = "1", features = ["full"] } diff --git a/dkg/Cargo.toml b/dkg/Cargo.toml index 356d5e3..5b1bc8d 100644 --- a/dkg/Cargo.toml +++ b/dkg/Cargo.toml @@ -10,7 +10,7 @@ eyre = "0.6.12" frost-core = { version = "2.0.0-rc.0", features = ["serde"] } frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "4d8c4bb337231e6e89117334d7c61dada589a953", features = ["frost"] } -clap = { version = "4.5.18", features = ["derive"] } +clap = { version = "4.5.19", features = ["derive"] } hex = { version = "0.4", features = ["serde"] } thiserror = "1.0" rand = "0.8" diff --git a/frost-client/Cargo.toml b/frost-client/Cargo.toml index 63ec1d5..48c4521 100644 --- a/frost-client/Cargo.toml +++ b/frost-client/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -clap = { version = "4.5.16", features = ["derive"] } +clap = { version = "4.5.19", features = ["derive"] } reqwest = { version = "0.12.5", features = ["json"] } serde = { version = "1.0", features = ["derive"] } snow = "0.9.6" diff --git a/participant/Cargo.toml b/participant/Cargo.toml index 81398d3..b024499 100644 --- a/participant/Cargo.toml +++ b/participant/Cargo.toml @@ -18,7 +18,7 @@ eyre = "0.6.12" exitcode = "1.1.2" serde_json = "1.0" serdect = { version = "0.2.0" } -clap = { version = "4.5.18", features = ["derive"] } +clap = { version = "4.5.19", features = ["derive"] } tokio = { version = "1", features = ["full"] } message-io = "0.18" reqwest = { version = "0.12.7", features = ["json"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 4c2509d..c48cce9 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" axum = "0.7.5" axum-extra = { version = "0.9.3", features = ["typed-header"] } axum-macros = "0.4.2" -clap = { version = "4.5.18", features = ["derive"] } +clap = { version = "4.5.19", features = ["derive"] } derivative = "2.2.0" eyre = "0.6.11" frost-core = { version = "2.0.0-rc.0", features = ["serde"] } diff --git a/trusted-dealer/Cargo.toml b/trusted-dealer/Cargo.toml index 9702315..a028c9c 100644 --- a/trusted-dealer/Cargo.toml +++ b/trusted-dealer/Cargo.toml @@ -10,7 +10,7 @@ frost-core = { version = "2.0.0-rc.0", features = ["serde"] } frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] } frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "56a31af7099b95737031ef6cf251939ed99627c0", features = ["frost"] } -clap = { version = "4.5.18", features = ["derive"] } +clap = { version = "4.5.19", features = ["derive"] } thiserror = "1.0" rand = "0.8" hex = "0.4"