[package]
edition = "2021"
name = "unchecked-std"
version = "1.1.1"
authors = ["lincot <lincot@disroot.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, unchecked variants of common std methods"
readme = "README.md"
keywords = [
"unchecked",
"unsafe",
"fast",
]
license = "0BSD"
repository = "https://github.com/lincot/unchecked-std"
[lib]
name = "unchecked_std"
path = "src/lib.rs"
[[test]]
name = "codegen"
path = "tests/codegen.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
[dependencies.heapless]
version = ">=0.7, <0.10"
optional = true
[dev-dependencies.rand]
version = "0.8.5"
default-features = false
[dev-dependencies.rand_pcg]
version = "0.3.1"
[lints.clippy]
all = "deny"
nursery = "deny"
pedantic = "deny"