[package]
edition = "2024"
name = "out"
version = "8.0.2"
authors = ["evenorog <evenorog@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provides fast min and max functionality for collections."
documentation = "https://docs.rs/out"
readme = "README.md"
keywords = [
"min",
"max",
"iterator",
"slice",
]
categories = [
"algorithms",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/evenorog/out"
[badges.maintenance]
status = "passively-maintained"
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "out"
path = "src/lib.rs"
[[test]]
name = "fuzz"
path = "tests/fuzz.rs"
[[test]]
name = "man"
path = "tests/man.rs"
[[bench]]
name = "rng"
path = "benches/rng.rs"
[dev-dependencies.quickcheck]
version = "1"
[dev-dependencies.quickcheck_macros]
version = "1"
[dev-dependencies.rand]
version = "0.10.1"
features = ["std_rng"]