product-os-random 0.0.20

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.
Documentation
[package]
name = "product-os-random"
version = "0.0.20" # version - The version of the package.
authors = ["Jeremy de Oliveira-Kumar <eremyj@gmail.com>"] # authors - The authors of the package.
edition = "2021" # edition - The Rust edition. 2021
rust-version = "1.69" # rust-version - The minimal supported Rust version. min 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." # description - A description of the package.
# documentation = "" # documentation - URL of the package documentation.
readme = "readme.md" # readme - Path to the package’s README file.  Use https://www.makeareadme.com/
# homepage = "" # homepage - URL of the package homepage.
# repository = "" # repository - URL of the package source repository.
license = "AGPL-3.0-only" # license - The package license.
# license-file = "license.txt" # license-file - Path to the text of the license.  Use https://choosealicense.com/
keywords = ["product-os"] # keywords - Keywords for the package.
categories = [] # categories - Categories of the package. https://crates.io/category_slugs
# workspace = "" # workspace - Path to the workspace for the package.
build = false # build - Path to the package build script.  default "build.rs" or specify
# links = "" # links - Name of the native library the package links with.
exclude = [] # exclude - Files to exclude when publishing.
include = [] # include - Files to include when publishing.
# publish = [] # publish - Can be used to prevent publishing the package. false to prevent publish, list of registries otherwise
# default-run = "" # default-run - The default binary to run by cargo run.
autobins = true # autobins - Disables binary auto discovery.
autoexamples = true # autoexamples - Disables example auto discovery.
autotests = true # autotests - Disables test auto discovery.
autobenches = true # autobenches - Disables bench auto discovery.
resolver = "2" # resolver - Sets the dependency resolver to use.  Use 2 with 2021, 1 prior

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[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]