]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_codegen_cranelift/patches/0001-rand-Enable-c2-chacha-simd-feature.patch
Update (un)suspicious files
[rustc.git] / compiler / rustc_codegen_cranelift / patches / 0001-rand-Enable-c2-chacha-simd-feature.patch
1 From 9c5663e36391fa20becf84f3af2e82afa5bb720b Mon Sep 17 00:00:00 2001
2 From: bjorn3 <bjorn3@users.noreply.github.com>
3 Date: Sat, 15 Aug 2020 19:56:03 +0200
4 Subject: [PATCH] [rand] Enable c2-chacha simd feature
5
6 ---
7 rand_chacha/Cargo.toml | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10 diff --git a/rand_chacha/Cargo.toml b/rand_chacha/Cargo.toml
11 index 9190b7f..872cca2 100644
12 --- a/rand_chacha/Cargo.toml
13 +++ b/rand_chacha/Cargo.toml
14 @@ -24,5 +24,5 @@ ppv-lite86 = { version = "0.2.8", default-features = false }
15
16 [features]
17 default = ["std"]
18 -std = ["ppv-lite86/std"]
19 +std = ["ppv-lite86/std", "ppv-lite86/simd"]
20 simd = [] # deprecated
21 --
22 2.20.1
23