60 lines
2.1 KiB
TOML
60 lines
2.1 KiB
TOML
[package]
|
|
name = "rand"
|
|
version = "0.5.0-pre.1" # NB: When modifying, also modify html_root_url in lib.rs
|
|
authors = ["The Rust Project Developers"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/rust-lang-nursery/rand"
|
|
documentation = "https://docs.rs/rand"
|
|
homepage = "https://crates.io/crates/rand"
|
|
description = """
|
|
Random number generators and other randomness functionality.
|
|
"""
|
|
keywords = ["random", "rng"]
|
|
categories = ["algorithms", "no-std"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "rust-lang-nursery/rand" }
|
|
appveyor = { repository = "alexcrichton/rand" }
|
|
|
|
[features]
|
|
default = ["std" ] # without "std" rand uses libcore
|
|
nightly = ["i128_support"] # enables all features requiring nightly rust
|
|
std = ["rand_core/std", "alloc", "libc", "winapi", "cloudabi", "fuchsia-zircon"]
|
|
alloc = ["rand_core/alloc"] # enables Vec and Box support (without std)
|
|
i128_support = [] # enables i128 and u128 support
|
|
serde1 = ["serde", "serde_derive", "rand_core/serde1"] # enables serialization for PRNGs
|
|
|
|
[workspace]
|
|
members = ["rand_core"]
|
|
|
|
[dependencies]
|
|
rand_core = { path = "rand_core", version = "0.1.0", default-features = false }
|
|
log = { version = "0.4", optional = true }
|
|
serde = { version = "1", optional = true }
|
|
serde_derive = { version = "1", optional = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = { version = "0.2", optional = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["minwindef", "ntsecapi", "profileapi", "winnt"], optional = true }
|
|
|
|
[target.'cfg(target_os = "cloudabi")'.dependencies]
|
|
cloudabi = { version = "0.0.3", optional = true }
|
|
|
|
[target.'cfg(target_os = "fuchsia")'.dependencies]
|
|
fuchsia-zircon = { version = "0.3.2", optional = true }
|
|
|
|
[target.wasm32-unknown-unknown.dependencies]
|
|
# use with `--target wasm32-unknown-unknown --features=stdweb`
|
|
stdweb = { version = "0.4", optional = true }
|
|
|
|
[dev-dependencies]
|
|
# This is for testing serde, unfortunately we can't specify feature-gated dev
|
|
# deps yet, see: https://github.com/rust-lang/cargo/issues/1596
|
|
bincode = "1.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|