[package]
edition = "2021"
rust-version = "1.85"
name = "faultkit"
version = "0.1.0"
authors = ["Corum Collective LLC <contact@santh.io>"]
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fault injection for testing error paths — fail the Nth syscall and verify graceful handling"
homepage = "https://github.com/santhsecurity/faultkit"
documentation = "https://docs.rs/faultkit"
readme = "README.md"
keywords = [
"testing",
"fault-injection",
"error",
"resilience",
"sqlite",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/santhsecurity/faultkit"
[lib]
name = "faultkit"
path = "src/lib.rs"
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.0"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1