Add solana-crate-features workaround to avoid cargo feature thrashing (#5904)

automerge
This commit is contained in:
Michael Vines
2019-09-13 23:46:21 -07:00
committed by Grimes
parent 8135279335
commit e1f4e8a84a
10 changed files with 208 additions and 40 deletions

View File

@@ -23,6 +23,7 @@ default = [
"solana-ed25519-dalek",
"solana-logger",
"untrusted",
"solana-crate-features"
]
[dependencies]
@@ -46,4 +47,5 @@ serde_json = { version = "1.0.40", optional = true }
sha2 = "0.8.0"
solana-ed25519-dalek = { version = "0.2.0", optional = true }
solana-logger = { path = "../logger", version = "0.19.0-pre0", optional = true }
untrusted = { version = "0.7.0", optional = true }
untrusted = { version = "0.7.0", optional = true }
solana-crate-features = { path = "../crate-features", version = "0.19.0-pre0", optional = true }