Skip to content
This repository was archived by the owner on Mar 23, 2021. It is now read-only.

Commit 42ef27d

Browse files
committed
Fix missing serde feature dependency
For some reason, this did not fail on a regular cargo build --release, but did cause trait bound errors on running cargo install.
1 parent 63d431c commit 42ef27d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cnd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ async-std = { version = "1", features = ["unstable"] }
1111
async-trait = "0.1"
1212
bigdecimal = "0.1.0"
1313
binary_macros = "0.6"
14-
bitcoin = "0.19.1"
14+
bitcoin = { version = "0.19.1", features = ["use-serde"] }
1515
blockchain_contracts = "0.1"
1616
byteorder = "1.3"
1717
chrono = { version = "0.4", features = ["serde"] }

0 commit comments

Comments
 (0)