[package]
edition = "2024"
rust-version = "1.92"
name = "uselesskey-core"
version = "0.3.0"
authors = ["Effortless Metrics <opensource@effortlessmetrics.com>"]
build = false
exclude = [
"fuzz/**",
"corpus/**",
"**/*.der",
"**/*.pem",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core factory, deterministic derivation, and cache engine for uselesskey test fixtures."
homepage = "https://github.com/EffortlessMetrics/uselesskey"
documentation = "https://docs.rs/uselesskey-core"
readme = "README.md"
keywords = [
"test",
"fixtures",
"deterministic",
"cache",
"seeded",
]
categories = [
"development-tools::testing",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/uselesskey"
resolver = "2"
[package.metadata.docs.rs]
features = ["std"]
[features]
default = ["std"]
std = [
"dep:uselesskey-core-sink",
"thiserror/std",
"rand_chacha/std",
"uselesskey-core-factory/std",
"uselesskey-core-cache/std",
"uselesskey-core-id/std",
"uselesskey-core-negative/std",
]
[lib]
name = "uselesskey_core"
path = "src/lib.rs"
[[test]]
name = "concurrency_stress"
path = "tests/concurrency_stress.rs"
[[test]]
name = "core_prop"
path = "tests/core_prop.rs"
[[test]]
name = "determinism_regression"
path = "tests/determinism_regression.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "factory_env"
path = "tests/factory_env.rs"
[[test]]
name = "factory_mutants"
path = "tests/factory_mutants.rs"
[[test]]
name = "factory_text_seed"
path = "tests/factory_text_seed.rs"
[[test]]
name = "negative_prop"
path = "tests/negative_prop.rs"
[[test]]
name = "security_invariants"
path = "tests/security_invariants.rs"
[[test]]
name = "snapshots_core"
path = "tests/snapshots_core.rs"
[dependencies.rand_chacha]
version = "0.3.1"
[dependencies.thiserror]
version = "2.0.18"
default-features = false
[dependencies.uselesskey-core-cache]
version = "0.3.0"
default-features = false
[dependencies.uselesskey-core-factory]
version = "0.3.0"
default-features = false
[dependencies.uselesskey-core-id]
version = "0.3.0"
default-features = false
[dependencies.uselesskey-core-negative]
version = "0.3.0"
default-features = false
[dependencies.uselesskey-core-sink]
version = "0.3.0"
optional = true
[dev-dependencies.insta]
version = "1.46.3"
features = [
"yaml",
"redactions",
]
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.rand_core]
version = "0.6.4"
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.serde]
version = "1.0.228"
features = ["derive"]