Skip to content

Commit 9f303e1

Browse files
committed
use http dep instead of internal bthhp/http
1 parent c02d1d1 commit 9f303e1

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
492492
checksum = "16fc24bc615b9fd63148f59b218ea58a444b55762f8845da910e23aca686398b"
493493
dependencies = [
494494
"thiserror 1.0.63",
495-
"url",
496495
]
497496

498497
[[package]]
@@ -2836,6 +2835,7 @@ dependencies = [
28362835
"clap 4.5.46",
28372836
"config",
28382837
"futures",
2838+
"http",
28392839
"http-body-util",
28402840
"hyper",
28412841
"hyper-util",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
492492
checksum = "16fc24bc615b9fd63148f59b218ea58a444b55762f8845da910e23aca686398b"
493493
dependencies = [
494494
"thiserror 1.0.63",
495-
"url",
496495
]
497496

498497
[[package]]
@@ -2836,6 +2835,7 @@ dependencies = [
28362835
"clap 4.5.46",
28372836
"config",
28382837
"futures",
2838+
"http",
28392839
"http-body-util",
28402840
"hyper",
28412841
"hyper-util",

payjoin-directory/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ acme = ["tokio-rustls-acme"]
2020

2121
[dependencies]
2222
anyhow = "1.0.99"
23-
bhttp = { version = "0.6.1", features = ["http"] }
23+
bhttp = { version = "0.6.1" }
2424
bitcoin = { version = "0.32.7", features = ["base64", "rand-std"] }
2525
clap = { version = "4.5.45", features = ["derive", "env"] }
2626
config = "0.15.14"
2727
futures = "0.3.31"
28+
http = { version = "1.3.1" }
2829
http-body-util = "0.1.3"
2930
hyper = { version = "1.6.0", features = ["http1", "server"] }
3031
hyper-util = { version = "0.1.16", features = ["tokio", "service"] }

payjoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ default = ["v2"]
2424
#[doc = "Core features for payjoin state machines"]
2525
_core = [
2626
"bitcoin/rand-std",
27-
"dep:http",
27+
"http",
2828
"serde_json",
2929
"form_urlencoded",
3030
"bitcoin_uri",

0 commit comments

Comments
 (0)