Skip to content

Commit

Permalink
chore: update reqwest and hyper
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Mar 23, 2024
1 parent f5f108f commit 32b8ae6
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 17 deletions.
93 changes: 81 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions integrationtests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ fedimint-tonic-lnd = { version = "0.2.0", features = ["lightningrpc", "walletrpc
url = "2.5.0"
moksha-mint = { path = "../moksha-mint" }
hex = "0.4.3"
reqwest = { version = "0.12.0", default-features = false }
reqwest = { version = "0.12.1", default-features = false }

[target.'cfg(not(target_family="wasm"))'.dependencies]
tokio = { version = "1.35.1", features = ["sync", "rt-multi-thread"] }

[dev-dependencies]
anyhow = { version = "1.0.80", features = ["backtrace"] }
tokio = { version = "1.36.0", features = ["full"] }
reqwest = { version = "0.12.0", default-features = false }
reqwest = { version = "0.12.1", default-features = false }
moksha-mint = { path = "../moksha-mint" }
moksha-wallet = { path = "../moksha-wallet" }
moksha-core = { path = "../moksha-core" }
Expand Down
4 changes: 2 additions & 2 deletions moksha-mint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ hex = "0.4.3"
async-trait = "0.1.74"
anyhow = { version = "1.0.75", features = ["backtrace"] }
axum = { version = "0.7.4", features = ["http2"] }
hyper = "0.14.28"
hyper = "1"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.36.0", features = ["full"] }
Expand All @@ -32,7 +32,7 @@ secp256k1 = { version = "0.28.2", default-features = false, features = ["rand",
thiserror = "1.0.50"
moksha-core = { path = "../moksha-core", version = "0.2.1" }
lightning-invoice = "0.26.0"
reqwest = { version = "0.11.25", default-features = false, features = ["serde_json", "json", "rustls-tls", "socks"] }
reqwest = { version = "0.12.1", default-features = false, features = ["json", "rustls-tls", "socks"] }
url = "2.4.1"
dotenvy = "0.15.7"
fedimint-tonic-lnd = { version = "0.2.0", features = ["lightningrpc", "walletrpc"] }
Expand Down
2 changes: 1 addition & 1 deletion moksha-wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ rexie = "0.5.0"
tokio = { version = "1.35.1", features = ["rt", "sync"] }

[target.'cfg(not(target_family="wasm"))'.dependencies]
reqwest = { version = "0.11.25", features = ["serde_json", "json", "rustls-tls"], default-features = false }
reqwest = { version = "0.12.1", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1.35.1", features = ["rt", "rt-multi-thread", "macros"] }
sqlx = { version = "0.7.4", default-features = false, features = ["sqlite", "runtime-tokio", "tls-rustls", "migrate", "macros"] }

Expand Down

0 comments on commit 32b8ae6

Please sign in to comment.