From f055d2f0ccc717b678d9a43b80ac527314474996 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 23 Sep 2019 16:03:38 -0700 Subject: [PATCH] ' => " (#6035) --- core/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index f450742367..6f64bdcb0b 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.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]