From: Riccardo Casatta Date: Thu, 19 Nov 2020 12:11:06 +0000 (+0100) Subject: pin cc version because last breaks rocksdb build X-Git-Tag: v0.1.0~27 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/struct.ScriptPath.html?a=commitdiff_plain;h=e97cecbbb6ea98d90ab763754e1d550a37799ac8;p=bdk-cli pin cc version because last breaks rocksdb build --- diff --git a/Cargo.toml b/Cargo.toml index 43d761f..54b4623 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,6 +22,8 @@ clap = { version = "2.33", optional = true } base64 = { version = "^0.11", optional = true } async-trait = { version = "0.1", optional = true } rocksdb = { version = "0.14", optional = true } +# pin cc version to 1.0.62 because 1.0.63 break rocksdb build +cc = { version = "=1.0.62", optional = true } socks = { version = "0.3", optional = true } lazy_static = { version = "1.4", optional = true } tiny-bip39 = { version = "^0.7", optional = true } @@ -41,7 +43,7 @@ compiler = ["clap", "miniscript/compiler"] default = ["key-value-db", "electrum"] electrum = ["electrum-client"] esplora = ["reqwest", "futures"] -compact_filters = ["rocksdb", "socks", "lazy_static"] +compact_filters = ["rocksdb", "socks", "lazy_static", "cc"] key-value-db = ["sled"] cli-utils = ["clap", "base64"] async-interface = ["async-trait"]