[package]
edition = "2024"
rust-version = "1.97"
name = "native-ipc-testkit"
version = "0.5.0"
authors = ["Rodrigo Agurto"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Adversarial helpers and cross-process conformance fixtures for native-ipc"
homepage = "https://github.com/ro-ag/native-ipc-rs"
documentation = "https://docs.rs/native-ipc-testkit"
readme = "README.md"
keywords = [
"ipc",
"shared-memory",
"process",
"capability",
"security",
]
categories = [
"os",
"memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ro-ag/native-ipc-rs"
[features]
default = []
[lib]
name = "native_ipc_testkit"
path = "src/lib.rs"
[[example]]
name = "hostile_inputs"
path = "examples/hostile_inputs.rs"
[[test]]
name = "golden_vectors"
path = "tests/golden_vectors.rs"
[dependencies.native-ipc]
version = "0.5.0"
[dependencies.native-ipc-core]
version = "0.5.0"
[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "deny"
unsafe_op_in_unsafe_fn = "deny"