Skip to content

Commit

Permalink
Merge pull request fedimint#5444 from fedimint/dependabot/cargo/patch…
Browse files Browse the repository at this point in the history
…-9a570717fb

chore(deps): bump the patch group across 1 directory with 11 updates
  • Loading branch information
dpc authored Jun 11, 2024
2 parents cb7a953 + e2c3233 commit 219bc10
Show file tree
Hide file tree
Showing 15 changed files with 316 additions and 70 deletions.
336 changes: 291 additions & 45 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ criterion = { version = "0.5.1" }
threshold_crypto = { version = "0.2.1", package = "fedimint-threshold-crypto" }
tonic_lnd = { version = "0.2.0", package="fedimint-tonic-lnd", features = ["lightningrpc", "routerrpc"] }
cln-rpc = "0.1.9"
clap = { version = "4.5.4", features = ["derive", "std", "help", "usage", "error-context", "suggestions", "env"], default-features = false }
clap = { version = "4.5.7", features = ["derive", "std", "help", "usage", "error-context", "suggestions", "env"], default-features = false }
serde = { version = "1.0.203", features = ["derive"] }
serde-big-array = "0.5.1"
serde_json = "1.0.117"
Expand All @@ -109,7 +109,7 @@ lightning = "0.0.123"
lightning-invoice = "0.31.0"
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["sync", "io-util"] }
url = "2.5.0"
url = "2.5.1"
erased-serde = "0.4"
async-trait = "0.1.80"
bincode = "1.3.3"
Expand Down
2 changes: 1 addition & 1 deletion devimint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ path = "src/main.rs"
anyhow = { version = "1.0.86", features = ["backtrace"] }
axum = { version = "0.7.5", features = ["tracing"] }
bitcoincore-rpc = { workspace = true }
clap = { version = "4.5.4", features = ["derive", "env", "std", "help", "usage", "error-context", "suggestions"], default-features = false }
clap = { version = "4.5.7", features = ["derive", "env", "std", "help", "usage", "error-context", "suggestions"], default-features = false }
cln-rpc = { workspace = true }
fedimint-aead = { path = "../crypto/aead" }
fedimintd = { path = "../fedimintd" }
Expand Down
6 changes: 3 additions & 3 deletions fedimint-api-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async-trait = { workspace = true }
base64 = { workspace = true }
futures = { workspace = true }
itertools = { workspace = true }
jsonrpsee-core = "0.23.0"
jsonrpsee-core = "0.23.1"
lru = "0.12.3"
serde = { workspace = true }
serde_json = { workspace = true }
Expand All @@ -32,12 +32,12 @@ fedimint-core = { workspace = true }
fedimint-logging = { workspace = true }

[target.'cfg(not(target_family = "wasm"))'.dependencies]
jsonrpsee-ws-client = { version = "0.23.0", default-features = false }
jsonrpsee-ws-client = { version = "0.23.1", default-features = false }
tokio = { version = "1.38.0", features = ["full", "tracing"] }
tokio-rustls = { workspace = true }

[target.'cfg(target_family = "wasm")'.dependencies]
jsonrpsee-wasm-client = "0.23.0"
jsonrpsee-wasm-client = "0.23.1"
async-lock = "3.4"
# getrandom is transitive dependency of rand
# on wasm, we need to enable the js backend
Expand Down
4 changes: 2 additions & 2 deletions fedimint-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ tokio = { version = "1.38.0", features = ["full", "tracing"] }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.18", features = [ "env-filter" ] }
serde_json = { version = "1.0.117", features = ["preserve_order"] }
url = { version = "2.5.0", features = ["serde"] }
clap_complete = "4.5.2"
url = { version = "2.5.1", features = ["serde"] }
clap_complete = "4.5.5"
reqwest = { version = "0.11.26", features = [ "json", "rustls-tls" ], default-features = false }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion fedimint-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ reqwest = { version = "0.12.2", features = ["json", "rustls-tls"], default-featu
ring = { version = "0.17.8", features = ["wasm32_unknown_unknown_js"] }

[dev-dependencies]
tracing-test = "0.2.4"
tracing-test = "0.2.5"

[build-dependencies]
fedimint-build = { version = "=0.4.0-alpha", path = "../fedimint-build" }
6 changes: 3 additions & 3 deletions fedimint-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ bech32 = "0.11.0"
bls12_381 = { workspace = true }
serdect = { workspace = true }
itertools = { workspace = true }
jsonrpsee-core = { version = "0.23.0", features = ["client"] }
jsonrpsee-core = { version = "0.23.1", features = ["client"] }
serde = { workspace = true }
serde_json = { workspace = true }
strum = { workspace = true }
Expand All @@ -34,7 +34,7 @@ hex = { version = "0.4.3", features = ["serde"] }
thiserror = { workspace = true }
tracing = { workspace = true }
threshold_crypto = { workspace = true }
url = { version = "2.5.0", features = ["serde"] }
url = { version = "2.5.1", features = ["serde"] }
bitcoin29 = { package = "bitcoin", version = "0.29.2", features = ["rand", "serde"] }
bitcoin = { workspace = true }
bitcoin_hashes = { workspace = true }
Expand All @@ -58,7 +58,7 @@ tokio = { version = "1.38.0", features = ["full", "tracing"] }
tokio-rustls = { workspace = true }

[target.'cfg(target_family = "wasm")'.dependencies]
jsonrpsee-wasm-client = "0.23.0"
jsonrpsee-wasm-client = "0.23.1"
async-lock = "3.4"
tokio = "1.38.0"
futures-util = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion fedimint-dbtool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ path = "src/lib.rs"
anyhow = { workspace = true }
fedimint-aead = { version = "=0.4.0-alpha", path = "../crypto/aead" }
bytes = "1.6.0"
clap = { version = "4.5.4", features = ["derive", "env"] }
clap = { version = "4.5.7", features = ["derive", "env"] }
fedimint-core = { workspace = true }
fedimint-client = { workspace = true }
fedimint-server = { version = "=0.4.0-alpha", path = "../fedimint-server" }
Expand Down
6 changes: 3 additions & 3 deletions fedimint-load-test-tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ fedimint-mint-client = { version = "=0.4.0-alpha", path = "../modules/fedimint-m
fedimint-rocksdb = { version = "=0.4.0-alpha", path = "../fedimint-rocksdb" }
fedimint-wallet-client = { version = "=0.4.0-alpha", path = "../modules/fedimint-wallet-client" }
futures = { workspace = true }
jsonrpsee-core = { version = "0.23.0", features = ["client"] }
jsonrpsee-core = { version = "0.23.1", features = ["client"] }
jsonrpsee-types = "0.23.0"
lightning-invoice = { workspace = true }
rand = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { version = "1", features = ["full", "tracing"] }
tracing = { workspace = true }
url = { version = "2.5.0", features = ["serde"] }
url = { version = "2.5.1", features = ["serde"] }

[target.'cfg(not(target_family = "wasm"))'.dependencies]
jsonrpsee-ws-client = { version = "0.23.0", default-features = false }
jsonrpsee-ws-client = { version = "0.23.1", default-features = false }

[build-dependencies]
fedimint-build = { version = "=0.4.0-alpha", path = "../fedimint-build" }
4 changes: 2 additions & 2 deletions fedimint-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ serde_json = { workspace = true }
sha3 = "0.10.8"
strum = { workspace = true }
strum_macros = { workspace = true }
tar = "0.4.40"
tar = "0.4.41"
tbs = { package = "fedimint-tbs", version = "=0.4.0-alpha", path = "../crypto/tbs" }
thiserror = { workspace = true }
tower = { version = "0.4.13", default-features = false }
tracing = { workspace = true }
url = { version = "2.5.0", features = ["serde"] }
url = { version = "2.5.1", features = ["serde"] }
threshold_crypto = { workspace = true }
jsonrpsee = { version = "0.23.0", features = ["server"] }
tokio = { version = "1.38.0", features = ["full", "tracing"] }
Expand Down
2 changes: 1 addition & 1 deletion fedimint-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async-stream = "0.3.5"
async-trait = { workspace = true }
bitcoin = { workspace = true }
bitcoincore-rpc = "0.17.0"
clap = { version = "4.5.4", features = ["derive", "std", "help", "usage", "error-context", "suggestions" ], default-features = false }
clap = { version = "4.5.7", features = ["derive", "std", "help", "usage", "error-context", "suggestions" ], default-features = false }
fedimint-core = { workspace = true }
fedimint-api-client = { workspace = true }
fedimint-client = { version = "=0.4.0-alpha", path = "../fedimint-client" }
Expand Down
2 changes: 1 addition & 1 deletion fedimintd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ tokio = { version = "1.38.0", features = ["full", "tracing"] }
tokio-rustls = { workspace = true }
tokio-util = { version = "0.7.11", features = [ "codec" ] }
tracing = { workspace = true }
url = { version = "2.5.0", features = ["serde"] }
url = { version = "2.5.1", features = ["serde"] }
threshold_crypto = { workspace = true }

# setup dependencies
Expand Down
6 changes: 3 additions & 3 deletions gateway/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async-trait = { workspace = true }
axum = "0.7.5"
axum-macros = "0.4.1"
bitcoin = { workspace = true }
clap = { version = "4.5.4", features = ["derive", "std", "help", "usage", "error-context", "suggestions"], default-features = false }
clap = { version = "4.5.7", features = ["derive", "std", "help", "usage", "error-context", "suggestions"], default-features = false }
ln-gateway = { version = "=0.4.0-alpha", package = "fedimint-ln-gateway", path= "../ln-gateway" }
fedimint-core = { workspace = true }
fedimint-logging = { workspace = true }
Expand All @@ -31,8 +31,8 @@ serde = { workspace = true}
serde_json = { workspace = true }
tokio = {version = "1.38", features = ["full"]}
tracing = { version = "0.1.40", default-features = false, features= ["log", "attributes", "std"] }
url = { version = "2.5.0", features = ["serde"] }
clap_complete = "4.5.2"
url = { version = "2.5.1", features = ["serde"] }
clap_complete = "4.5.5"

[build-dependencies]
fedimint-build = { version = "=0.4.0-alpha", path = "../../fedimint-build" }
2 changes: 1 addition & 1 deletion gateway/ln-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ tonic = { version = "0.11.0", features = ["transport", "tls"] }
tonic_lnd = { workspace = true }
tower-http = { version = "0.5.2", features = ["cors", "auth"] }
tracing = { version = "0.1.40", default-features = false, features= ["log", "attributes", "std"] }
url = { version = "2.5.0", features = ["serde"] }
url = { version = "2.5.1", features = ["serde"] }

[dev-dependencies]
fedimint-dummy-client = { version = "=0.4.0-alpha", path = "../../modules/fedimint-dummy-client" }
Expand Down
2 changes: 1 addition & 1 deletion recoverytool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ path = "src/main.rs"
[dependencies]
anyhow = { workspace = true }
bitcoin = { workspace = true }
clap = { version = "4.5.4", features = [ "derive", "env" ] }
clap = { version = "4.5.7", features = [ "derive", "env" ] }
fedimint-aead = { version = "=0.4.0-alpha", path = "../crypto/aead" }
fedimint-core = { workspace = true }
fedimint-rocksdb = { version = "=0.4.0-alpha", path = "../fedimint-rocksdb" }
Expand Down

0 comments on commit 219bc10

Please sign in to comment.