Merge rust-bitcoin/rust-bitcoin#1267: Fix serde versions
4d54b161e7
Fix serde versions (Martin Habovstiak) Pull request description: `Cargo.toml` claimed that this crate works with very old versions of `serde` which wasn't the case. This commit changes the versions to minimal known-to-work values. Adding `trivial` tag because the text change is trivial even though figuring it out wasn't. :) If you manually decrease any of the versions by 1 (in both `Cargo.toml` and `Cargo.lock`) the build should fail. ACKs for top commit: apoelstra: ACK4d54b161e7
tcharding: utACK4d54b161e7
Tree-SHA512: 81ff3e9612aae4f3279d4dcb76ef4942d5047e7ddff84741e0ca269ee69a7631d062f6b5e6e43094e5d5f3e0b8799ddc224b716f630c9f0161185ed81fa0e96a
This commit is contained in:
commit
3b59b3b266
|
@ -42,12 +42,12 @@ core2 = { version = "0.3.0", optional = true, default-features = false }
|
|||
base64 = { version = "0.13.0", optional = true }
|
||||
bitcoinconsensus = { version = "0.20.2-0.5.0", optional = true }
|
||||
# Do NOT use this as a feature! Use the `serde` feature instead.
|
||||
actual-serde = { package = "serde", version = "1", default-features = false, features = [ "derive", "alloc" ], optional = true }
|
||||
actual-serde = { package = "serde", version = "1.0.103", default-features = false, features = [ "derive", "alloc" ], optional = true }
|
||||
hashbrown = { version = "0.8", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "<1.0.45"
|
||||
serde_test = "1"
|
||||
serde_json = "1.0.0"
|
||||
serde_test = "1.0.19"
|
||||
secp256k1 = { version = "0.24.0", features = [ "recovery", "rand-std" ] }
|
||||
bincode = "1.3.1"
|
||||
|
||||
|
|
Loading…
Reference in New Issue