aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-02-17 03:34:09 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-02-17 03:34:09 +0000
commit4dabd850288094946be4feb9890e2f00382f9500 (patch)
tree858bd5e42515f6d5833d6e17d6245863c49477ee /Cargo.toml.orig
parentd9485ccfbc37a8736dfc085f2f6ceafa3e31696a (diff)
parent271eede053420cdcea5f348bb0eed9f41a0c006f (diff)
downloadrand-4dabd850288094946be4feb9890e2f00382f9500.tar.gz
Snap for 8191477 from 271eede053420cdcea5f348bb0eed9f41a0c006f to tm-frc-resolv-release
Change-Id: Ib11cb0847776a5e5d64713ffdba810efbe484368
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig10
1 files changed, 7 insertions, 3 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index afd1339..5ce3123 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "rand"
-version = "0.8.3"
+version = "0.8.4"
authors = ["The Rand Project Developers", "The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@@ -20,7 +20,7 @@ include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
# Meta-features:
default = ["std", "std_rng"]
nightly = [] # enables performance optimizations requiring nightly rust
-serde1 = ["serde"]
+serde1 = ["serde", "rand_core/serde1"]
# Option (enabled by default): without "std" rand uses libcore; this option
# enables functionality expected to be available on a standard platform.
@@ -41,6 +41,10 @@ std_rng = ["rand_chacha", "rand_hc"]
# Option: enable SmallRng
small_rng = []
+# Option: for rustc ≥ 1.51, enable generating random arrays of any size
+# using min-const-generics
+min_const_gen = []
+
[workspace]
members = [
"rand_core",
@@ -58,7 +62,7 @@ serde = { version = "1.0.103", features = ["derive"], optional = true }
[dependencies.packed_simd]
# NOTE: so far no version works reliably due to dependence on unstable features
package = "packed_simd_2"
-version = "0.3.4"
+version = "0.3.5"
optional = true
features = ["into_bits"]