rand04_compat/Cargo.toml

21 lines
546 B
TOML
Raw Permalink Normal View History

2018-12-18 01:42:58 -08:00
[package]
name = "rand04_compat"
description = "Wrappers for compatibility with rand 0.4."
2018-12-19 03:47:54 -08:00
version = "0.1.1"
2018-12-18 01:42:58 -08:00
license = "MIT/Apache-2.0"
repository = "https://github.com/poanetwork/rand04_compat"
readme = "README.md"
keywords = ["random", "rng"]
categories = ["algorithms", "no-std"]
authors = ["Andreas Fackler <AndreasFackler@gmx.de>"]
edition = "2018"
[dependencies]
rand = { version = "0.6.1", default-features = false }
rand04 = { version = "0.1.0", default-features = false }
[features]
default = ["std"]
std = ["rand04/std", "rand/std"]