Skip to content

Commit 90d0211

Browse files
committed
Specify the versions for deps more precisely in the cargo toml
We had 2 dep versions that were on lesss specific version numbers and in adding these deps to other crates there is/was some confusion around which version to use. By adding specific versions for these deps when other crates need or want to add these dependecies we can prevent dep tree mismatches.
1 parent a65928e commit 90d0211

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

payjoin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ bitcoin = { version = "0.32.5", features = ["base64"] }
3232
bitcoin_uri = { version = "0.1.0", optional = true }
3333
hpke = { package = "bitcoin-hpke", version = "0.13.0", optional = true }
3434
log = { version = "0.4.14"}
35-
http = { version = "1", optional = true }
35+
http = { version = "1.1.0", optional = true }
3636
bhttp = { version = "=0.5.1", optional = true }
3737
ohttp = { package = "bitcoin-ohttp", version = "0.6.0", optional = true }
3838
serde = { version = "1.0.186", default-features = false, optional = true }
@@ -44,7 +44,7 @@ serde_json = { version = "1.0.108", optional = true }
4444
[dev-dependencies]
4545
bitcoind = { version = "0.36.0", features = ["0_21_2"] }
4646
payjoin-test-utils = { path = "../payjoin-test-utils" }
47-
once_cell = "1"
47+
once_cell = "1.19.0"
4848
tokio = { version = "1.38.1", features = ["full"] }
4949
tracing = "0.1.40"
5050

0 commit comments

Comments
 (0)