fix serde in no_std

This commit is contained in:
Cheng XU
2020-09-21 19:16:01 -07:00
parent 91234fcdc8
commit 6ce6519287

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"] }