getrandom/Cargo.toml

32 lines
820 B
TOML
Raw Normal View History

2019-01-19 12:56:20 +00:00
[package]
name = "getrandom"
2019-02-04 20:57:30 +03:00
version = "0.1.0"
2019-01-19 12:56:20 +00:00
authors = ["The Rand Project Developers"]
2019-02-04 20:57:30 +03:00
license = "MIT OR Apache-2.0"
2019-01-19 12:56:20 +00:00
description = "A small cross-platform library to securely get random data (entropy)"
2019-02-04 20:57:30 +03:00
[badges]
travis-ci = { repository = "rust-random/getrandom" }
appveyor = { repository = "rust-random/getrandom" }
[workspace]
members = [
"tests/wasm_bindgen",
]
2019-02-04 20:57:30 +03:00
[target.'cfg(unix)'.dependencies]
libc = "0.2.27"
2019-02-04 20:57:30 +03:00
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.6", features = ["minwindef", "ntsecapi", "winnt"] }
2019-02-04 20:57:30 +03:00
[target.'cfg(target_os = "cloudabi")'.dependencies]
cloudabi = "0.0.3"
2019-02-05 13:00:43 +03:00
[target.'cfg(fuchsia)'.dependencies]
fuchsia-cprng = "0.1"
2019-02-04 20:57:30 +03:00
[target.wasm32-unknown-unknown.dependencies]
wasm-bindgen = { version = "0.2.29", optional = true }
stdweb = { version = "0.4.9", optional = true }