Remove unnecessary serde_derive dependency declaration

We already express the same thing through the serde `derive` feature.
This commit is contained in:
Thomas Eizinger 2021-02-22 12:28:57 +11:00
parent d54fac6fd9
commit f0ba80794c
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
2 changed files with 0 additions and 2 deletions

1
Cargo.lock generated
View File

@ -3498,7 +3498,6 @@ dependencies = [
"rust_decimal",
"serde",
"serde_cbor",
"serde_derive",
"serde_json",
"sha2 0.9.2",
"sigma_fun",

View File

@ -43,7 +43,6 @@ reqwest = { version = "0.11", default-features = false }
rust_decimal = "1.10"
serde = { version = "1", features = ["derive"] }
serde_cbor = "0.11"
serde_derive = "1.0"
serde_json = "1"
sha2 = "0.9"
sigma_fun = { git = "https://github.com/LLFourn/secp256kfun", features = ["ed25519", "serde"] }