From 65365b274fc49dcc78d1abe35f841e9027517dc4 Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Mon, 19 Aug 2019 14:44:06 +1200 Subject: [PATCH] fix no-std --- rand_chacha/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rand_chacha/Cargo.toml b/rand_chacha/Cargo.toml index 6a47b863417..7d729e6e3f3 100644 --- a/rand_chacha/Cargo.toml +++ b/rand_chacha/Cargo.toml @@ -20,9 +20,9 @@ appveyor = { repository = "rust-random/rand" } [dependencies] rand_core = { path = "../rand_core", version = "0.5" } -c2-chacha = { version = "0.2.2", default-features = false, features = ["simd"] } +c2-chacha = { version = "0.2.2", default-features = false } [features] default = ["std", "simd"] std = ["c2-chacha/std"] -simd = [] # deprecated +simd = ["c2-chacha/simd"]