This commit is contained in:
Michael Vines 2019-09-23 16:03:38 -07:00 committed by GitHub
parent 72fb52ec60
commit f055d2f0cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -78,10 +78,10 @@ tokio-io = "0.1"
untrusted = "0.7.0"
solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "0.20.0" }
# reed-solomon-erasure's simd_c feature fails to build for x86_64-pc-windows-msvc, use pure-rust
[target.'cfg(windows)'.dependencies]
# reed-solomon-erasure's simd-accel feature fails to build for x86_64-pc-windows-msvc
[target."cfg(windows)".dependencies]
reed-solomon-erasure = "4.0"
[target.'cfg(not(windows))'.dependencies]
[target."cfg(not(windows))".dependencies]
reed-solomon-erasure = { version = "4.0", features = ["simd-accel"] }
[dependencies.rocksdb]