Skip to content

Commit 38ecbd0

Browse files
committed
client: Enable std feature in types crate
The `client` is std only but we don't enable the `std` feature in `types` - this is a bug. Fix: #97
1 parent 5698663 commit 38ecbd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ client-sync = ["jsonrpc"]
2222

2323
[dependencies]
2424
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
25-
types = { package = "corepc-types", version = "0.6.0", default-features = false, features = [] }
25+
types = { package = "corepc-types", version = "0.6.0", default-features = false, features = ["std"] }
2626
log = "0.4"
2727
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ] }
2828
serde_json = { version = "1.0.117" }

0 commit comments

Comments
 (0)