[package] name = "xor_rand" version = "0.1.3400" authors = ["Eric Petersen "] edition = "2021" description = "An arbitrary byte length, counter based PRNG crate." license = "AGPL-3.0-or-later" include = [ "src/lib.rs", "Cargo.toml", ] readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] [profile.release] opt-level = 3 # Optimize for speed lto = true # Enable Link Time Optimization codegen-units = 1 # Reduce number of codegen units to increase optimizations. panic = 'abort' # Abort on panic