# 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 = "2018" name = "squirrel-rng" version = "0.2.4" authors = ["J/A "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ An impl of `rand::Rng` based on a talk by Squirrel Eiserloh re: Math for Game Programmers. """ homepage = "https://github.com/archer884/squirrel-rng" readme = "README.md" keywords = [ "gamedev", "random", "rng", ] categories = ["game-development"] license = "MIT/Apache-2.0" repository = "https://github.com/archer884/squirrel-rng" [lib] name = "squirrel_rng" path = "src/lib.rs" [dependencies.rand] version = "0.8.5" default-features = false [features] default = [ "std", "getrandom", ] getrandom = ["rand/getrandom"] std = [ "rand/std", "rand/std_rng", ]