🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

fastrand

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastrand - cargo Package Compare versions

Comparing version
2.1.0
to
2.1.1
+1
-1
.cargo_vcs_info.json
{
"git": {
"sha1": "7e60c7f688f9be3dcd4f59f216c87dac88ca2902"
"sha1": "9d1a66fe46cee30e6c716812a9df467c653fa290"
},
"path_in_vcs": ""
}

@@ -16,5 +16,10 @@ # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO

name = "fastrand"
version = "2.1.0"
version = "2.1.1"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
build = false
exclude = ["/.*"]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple and fast random number generator"

@@ -40,2 +45,18 @@ readme = "README.md"

[lib]
name = "fastrand"
path = "src/lib.rs"
[[test]]
name = "char"
path = "tests/char.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
[dev-dependencies.getrandom]

@@ -59,3 +80,3 @@ version = "0.2"

[target."cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))".dependencies.getrandom]
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies.getrandom]
version = "0.2"

@@ -65,7 +86,7 @@ features = ["js"]

[target."cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))".dev-dependencies.getrandom]
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dev-dependencies.getrandom]
version = "0.2"
features = ["js"]
[target."cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))".dev-dependencies.wasm-bindgen-test]
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dev-dependencies.wasm-bindgen-test]
version = "0.3"

@@ -0,1 +1,5 @@

# Version 2.1.1
- Remove support for 128-bit targets, as they are not supported by rustc yet. (#87)
# Version 2.1.0

@@ -2,0 +6,0 @@

@@ -622,10 +622,2 @@ //! A simple and fast random number generator.

);
#[cfg(target_pointer_width = "128")]
rng_integer!(
usize,
usize,
gen_u128,
gen_mod_u128,
"Generates a random `usize` in the given range."
);

@@ -632,0 +624,0 @@ /// Generates a random `char` in range A-Z.

Sorry, the diff of this file is not supported yet