diff --git a/Cargo.lock b/Cargo.lock index 1a68077..87d566f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -322,9 +322,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.5.8" +version = "4.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84b3edb18336f4df585bc9aa31dd99c036dfa5dc5e9a2939a722a188f3a8970d" +checksum = "64acc1846d54c1fe936a78dc189c34e28d3f5afc348403f28ecf53660b9b8462" dependencies = [ "clap_builder", "clap_derive", @@ -332,9 +332,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.8" +version = "4.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1c09dd5ada6c6c78075d6fd0da3f90d8080651e2d6cc8eb2f1aaa4034ced708" +checksum = "6fb8393d67ba2e7bfaf28a23458e4e2b543cc73a99595511eb207fdb8aede942" dependencies = [ "anstream", "anstyle", diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index 919c7f6..3b57b24 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -18,7 +18,7 @@ rand = "0.8" serde_json = "1.0" itertools = "0.13.0" exitcode = "1.1.2" -clap = { version = "4.5.8", features = ["derive"] } +clap = { version = "4.5.9", features = ["derive"] } reqwest = { version = "0.12.5", features = ["json"] } server = { path = "../server" } tokio = { version = "1", features = ["full"] } diff --git a/dkg/Cargo.toml b/dkg/Cargo.toml index 6d38d73..9274081 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.8", features = ["derive"] } +clap = { version = "4.5.9", features = ["derive"] } hex = { version = "0.4", features = ["serde"] } thiserror = "1.0" rand = "0.8" diff --git a/participant/Cargo.toml b/participant/Cargo.toml index fec46f3..6016436 100644 --- a/participant/Cargo.toml +++ b/participant/Cargo.toml @@ -16,7 +16,7 @@ rand = "0.8" eyre = "0.6.12" exitcode = "1.1.2" serde_json = "1.0" -clap = { version = "4.5.8", features = ["derive"] } +clap = { version = "4.5.9", features = ["derive"] } tokio = { version = "1", features = ["full"] } message-io = "0.18" reqwest = { version = "0.12.5", features = ["json"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 34d4e86..0a996d7 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] axum = "0.7.5" -clap = { version = "4.5.8", features = ["derive"] } +clap = { version = "4.5.9", 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 fcdeb55..6786766 100644 --- a/trusted-dealer/Cargo.toml +++ b/trusted-dealer/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" 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.8", features = ["derive"] } +clap = { version = "4.5.9", features = ["derive"] } thiserror = "1.0" rand = "0.8" hex = "0.4"