[package] name = "xoroshiro128" version = '0.5.0' authors = ["Matthew Scharley "] description = "Fast psuedo-random number generators" documentation = "https://mscharley.github.io/rust-xoroshiro128/" repository = "https://github.com/mscharley/rust-xoroshiro128" readme = "README.md" license = "MIT" keywords = ["rng", "random", "xorshift", "xoroshiro", "splitmix"] exclude = [".gitignore", "circle.yml"] [features] # This crate is built with no_std by default. This feature builds it with std. std = [] [dependencies] rand_core = "0.5" rand = { version = "0.7", optional = true }