Skip to content

Commit e2b66a2

Browse files
authored
Specify the versions for deps more precisely in the cargo toml (payjoin#696)
These versions are what already exist in the cargo tree and by including these specific versions we are not actually changing any versions, just what devs can refer back to when looking for exact dependency versions.
2 parents 3a47c73 + 74d71f9 commit e2b66a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

payjoin-test-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ license = "MIT"
1212
bitcoin = { version = "0.32.5", features = ["base64"] }
1313
bitcoincore-rpc = "0.19.0"
1414
bitcoind = { version = "0.36.0", features = ["0_21_2"] }
15-
http = "1"
15+
http = "1.1.0"
1616
log = "0.4.7"
1717
ohttp = { package = "bitcoin-ohttp", version = "0.6.0" }
1818
ohttp-relay = { version = "0.0.10", features = ["_test-util"] }
19-
once_cell = "1"
19+
once_cell = "1.19.0"
2020
payjoin = { version = "0.23.0", features = ["io", "_danger-local-https"] }
2121
payjoin-directory = { version = "0.0.2", features = ["_danger-local-https"] }
2222
rcgen = "0.11"

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)