From 6d01c51c63ef9a2fb79f0b546cfa3f9657eb8fa0 Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Wed, 3 Feb 2021 09:42:23 -0500 Subject: [PATCH] Un-pin the version of `cc` Fixes #183 --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 12b0fd1a..0e2ceff8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,8 +27,7 @@ reqwest = { version = "0.11", optional = true, features = ["json"] } futures = { version = "0.3", 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 } +cc = { version = ">=1.0.64", optional = true } socks = { version = "0.3", optional = true } lazy_static = { version = "1.4", optional = true } tiny-bip39 = { version = "^0.8", optional = true }