[package]
name = "product-os-random"
version = "0.0.20"
authors = ["Jeremy de Oliveira-Kumar <eremyj@gmail.com>"]
edition = "2021"
rust-version = "1.69"
description = "Product OS : Random provides a suite of random generator tools for different contexts. This includes random text, number and key generators including crypotgraphically secure random generation."
readme = "readme.md"
license = "AGPL-3.0-only"
keywords = ["product-os"]
categories = []
build = false
exclude = []
include = []
autobins = true
autoexamples = true
autotests = true
autobenches = true
resolver = "2"
[dependencies]
no-std-compat = { version = "0.4.1", features = ["alloc"], optional = false }
spin = { version = "0.9.8", features = [], default-features = false, optional = true }
rand = { version = "0.8.5", features = [], default-features = false, optional = true }
getrandom = { version = "0.2.11", features = [], default-features = false, optional = true }
inflections = { version = "1.1.1", features = [], default-features = false, optional = true }
[patch.crates-io]
[features]
default = ["no-std-compat/std", "rand/std", "rand/std_rng", "rand/getrandom"]
all = ["default", "constrained", "custom"]
constrained = ["rand/alloc"]
custom = ["getrandom/custom", "spin/spin_mutex", "spin/mutex", "rand/alloc"]
words = []
nouns = []
adjectives = []
names = []
first_names = ["inflections"]
last_names = ["inflections"]
[workspace]