# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "frand" version = "0.10.1" authors = ["EngusMaze"] build = false exclude = ["*.png"] autobins = false autoexamples = false autotests = false autobenches = false description = "Blazingly fast random number generation library" homepage = "https://github.com/engusmaze/frand" readme = "README.md" license = "Apache-2.0 OR MIT" repository = "https://github.com/engusmaze/frand" [lib] name = "frand" path = "src/lib.rs" [[example]] name = "float" path = "examples/float.rs" [[example]] name = "image" path = "examples/image.rs" [[example]] name = "integer" path = "examples/integer.rs" [[example]] name = "range" path = "examples/range.rs" [[example]] name = "shuffle" path = "examples/shuffle.rs" [[bench]] name = "fastrand" path = "benches/fastrand.rs" [[bench]] name = "frand" path = "benches/frand.rs" [[bench]] name = "rand_small_rng" path = "benches/rand_small_rng.rs" [dependencies.glam] version = "0" optional = true [dependencies.rand_core] version = "0.6" optional = true [dev-dependencies.fastrand] version = "2.0.0" [dev-dependencies.image] version = "0.24.6" features = ["png"] default-features = false [dev-dependencies.rand] version = "0.8" features = ["small_rng"] [features] default = [ "glam", "std", "impl_rng_core", ] glam = ["dep:glam"] impl_rng_core = ["dep:rand_core"] std = []