scsys-utils 0.2.3

scsys is a collection of primitives and utilities for use throughout the ecosystem.
Documentation
[build-dependencies]

[dependencies.num]
default-features = false
version = "0.4"

[dependencies.rand]
default-features = false
optional = true
version = "0.8"

[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1"

[dependencies.strum]
default-features = false
features = ["derive"]
version = "0.26"

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.serde_json]
version = "1"

[features]
alloc = ["num/alloc", "rand?/alloc", "serde?/alloc"]
default = ["std"]
full = ["default", "rand", "serde"]
rand = ["dep:rand", "num/rand"]
serde = ["dep:serde", "serde-ext"]
serde-ext = ["num/serde", "rand?/serde1"]
std = ["alloc", "num/std", "rand?/std", "rand?/std_rng", "serde?/std", "strum/std"]
wasi = []
wasm = ["getrandom/js"]

[lib]
bench = false
crate-type = ["cdylib", "rlib"]
doctest = true
name = "scsys_utils"
path = "src/lib.rs"
test = true

[package]
authors = ["FL03 <jo3mccain@icloud.com>", "Scattered-Systems <jo3mccain@scattered-systems.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = []
description = "scsys is a collection of primitives and utilities for use throughout the ecosystem."
edition = "2021"
homepage = "https://github.com/scattered-systems/scsys/wiki"
keywords = ["primitives", "scsys", "toolkit", "utilities"]
license = "Apache-2.0"
name = "scsys-utils"
readme = "README.md"
repository = "https://github.com/scattered-systems/scsys.git"
version = "0.2.3"

[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs"]

[target.wasm32-unknown-unknown.dependencies.getrandom]
version = "0.2"

[target.wasm32-wasi]

[[test]]
name = "casing"
path = "tests/casing.rs"
required-features = ["alloc"]

[[test]]
name = "default"
path = "tests/default.rs"