fix serde in no_std

This commit is contained in:
Cheng XU 2020-09-21 19:16:01 -07:00
parent 91234fcdc8
commit 6ce6519287
No known key found for this signature in database
GPG key ID: 8794B5D7A3C67F70

View file

@ -28,7 +28,7 @@ merlin = { version = "2", default-features = false, optional = true }
rand = { version = "0.7", default-features = false, optional = true }
rand_core = { version = "0.5", default-features = false, optional = true }
serde_crate = { package = "serde", version = "1.0", default-features = false, optional = true }
serde_bytes = { version = "0.11", optional = true }
serde_bytes = { version = "0.11", default-features = false, features = ["alloc"], optional = true }
sha2 = { version = "0.9", default-features = false }
zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] }