From 1819f263f12d4d31d6f260cb7c12e088b85ac84f Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2019 17:31:05 -0700 Subject: [PATCH] ' => " (#6035) (#6036) automerge --- core/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 1c42e92a10..7dba3bea53 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -78,10 +78,10 @@ tokio-io = "0.1" untrusted = "0.7.0" solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "0.19.0-pre0" } -# 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]