blob: e04dcc141dcc6726d2c7345afcc7b24d66ae6fcc [file] [log] [blame]
[package]
name = "rand_jitter"
version = "0.1.0"
authors = ["The Rand Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-random/rand"
documentation = "https://docs.rs/rand_jitter"
description = "OS backed Random Number Generator"
keywords = ["random", "rng", "os"]
[badges]
travis-ci = { repository = "rust-random/rand" }
appveyor = { repository = "rust-random/rand" }
[dependencies]
rand_core = { path = "../rand_core", version = "0.4" }
log = { version = "0.4", optional = true }
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
libc = "0.2"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["profileapi"] }
[features]
std = ["rand_core/std"]