fix correct minimal versions for serde crates

This commit is contained in:
Andrew Poelstra 2023-03-18 16:06:41 +00:00
parent b03602bfaa
commit 0494f50b1a
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ global-context-less-secure = ["global-context"]
[dependencies] [dependencies]
secp256k1-sys = { version = "0.8.1", default-features = false, path = "./secp256k1-sys" } secp256k1-sys = { version = "0.8.1", default-features = false, path = "./secp256k1-sys" }
serde = { version = "1.0", default-features = false, optional = true } serde = { version = "1.0.103", default-features = false, optional = true }
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable # You likely only want to enable these if you explicitly do not want to use "std", otherwise enable
# the respective -std feature e.g., bitcoin-hashes-std # the respective -std feature e.g., bitcoin-hashes-std
@ -48,7 +48,7 @@ rand = { version = "0.8", default-features = false, optional = true }
[dev-dependencies] [dev-dependencies]
rand_core = "0.6" rand_core = "0.6"
serde_cbor = "0.10.0" serde_cbor = "0.10.0"
serde_test = "1.0" serde_test = "1.0.19"
bincode = "1.3.3" bincode = "1.3.3"
[target.wasm32-unknown-unknown.dev-dependencies] [target.wasm32-unknown-unknown.dev-dependencies]