-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (28 loc) · 820 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "frand"
version = "0.10.1"
edition = "2021"
authors = ["EngusMaze"]
description = "Blazingly fast random number generation library"
tags = ["rng", "random", "no_std"]
repository = "https://github.com/engusmaze/frand"
homepage = "https://github.com/engusmaze/frand"
license = "Apache-2.0 OR MIT"
exclude = ["*.png"]
readme = "README.md"
[workspace]
resolver = "2"
members = ["examples/no-std"]
[dev-dependencies]
image = { version = "0.24.6", default-features = false, features = ["png"] }
# Other PRNGs
rand = { version = "0.8", features = ["small_rng"] }
fastrand = "2.0.0"
[dependencies]
glam = { version = "0", optional = true }
rand_core = { version = "0.6", optional = true }
[features]
default = ["glam", "std", "impl_rng_core"]
impl_rng_core = ["dep:rand_core"]
glam = ["dep:glam"]
std = []