[package]
name = "rand_isaac"
version = "0.3.0"
authors = ["The Rand Project Developers", "The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-random/rngs"
documentation = "https://docs.rs/rand_isaac"
homepage = "https://rust-random.github.io/book"
description = """
ISAAC random number generator
"""
keywords = ["random", "rng", "isaac"]
categories = ["algorithms", "no-std"]
edition = "2018"
[features]
serde1 = ["serde", "rand_core/serde1"]
[dependencies]
rand_core = { version = "0.6" }
serde = { version = "1.0.103", features = ["derive"], optional = true }
serde_derive = { version = "1.0.103", optional = true }
[dev-dependencies]
bincode = "1.1.4"