You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rust-rand/rand-fix-metadata.diff

48 lines
1.3 KiB

--- rand-0.6.1/Cargo.toml 1970-01-01T01:00:00+01:00
+++ rand-0.6.1/Cargo.toml 2018-12-03T14:32:52.470796+01:00
@@ -30,11 +30,6 @@
version = "0.4"
optional = true
-[dependencies.packed_simd]
-version = "0.3"
-features = ["into_bits"]
-optional = true
-
[dependencies.rand_chacha]
version = "0.1"
@@ -62,31 +57,12 @@
alloc = ["rand_core/alloc"]
default = ["std"]
7 years ago
i128_support = []
-nightly = ["simd_support"]
serde1 = ["rand_core/serde1", "rand_isaac/serde1", "rand_xorshift/serde1"]
-simd_support = ["packed_simd"]
7 years ago
-std = ["rand_core/std", "alloc", "libc", "winapi", "cloudabi", "fuchsia-zircon"]
-[target."cfg(target_os = \"cloudabi\")".dependencies.cloudabi]
-version = "0.0.3"
-optional = true
-[target."cfg(target_os = \"fuchsia\")".dependencies.fuchsia-zircon]
-version = "0.3.2"
-optional = true
+std = ["rand_core/std", "alloc", "libc"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
optional = true
default-features = false
7 years ago
-[target."cfg(windows)".dependencies.winapi]
-version = "0.3"
-features = ["minwindef", "ntsecapi", "profileapi", "winnt"]
-optional = true
-[target.wasm32-unknown-unknown.dependencies.stdweb]
-version = "0.4"
-optional = true
-
-[target.wasm32-unknown-unknown.dependencies.wasm-bindgen]
-version = "0.2.12"
-optional = true
7 years ago
[badges.appveyor]
repository = "rust-random/rand"