# 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 = "unity-random" version = "1.0.0" authors = ["Minavoii"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A reimplementation of Unity's pseudo-random number generator." documentation = "https://docs.rs/unity-random" readme = "README.md" keywords = [ "unity", "random", "rng", ] categories = ["algorithms"] license = "MIT" repository = "https://github.com/Minavoii/unity-random" [lib] name = "unity_random" path = "src/lib.rs" [[test]] name = "color" path = "tests/color.rs" [[test]] name = "inside_unit_circle" path = "tests/inside_unit_circle.rs" [[test]] name = "inside_unit_sphere" path = "tests/inside_unit_sphere.rs" [[test]] name = "on_unit_sphere" path = "tests/on_unit_sphere.rs" [[test]] name = "range_float" path = "tests/range_float.rs" [[test]] name = "range_int" path = "tests/range_int.rs" [[test]] name = "rotation" path = "tests/rotation.rs" [[test]] name = "rotation_uniform" path = "tests/rotation_uniform.rs" [[test]] name = "value" path = "tests/value.rs" [dependencies.serde_crate] version = "1.0.208" features = ["derive"] optional = true default-features = false package = "serde" [features] serde = ["serde_crate"]