[package]
edition = "2024"
rust-version = "1.97"
name = "native-ipc-core"
version = "0.6.1"
authors = ["Rodrigo Agurto"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Platform-neutral, pointer-free protocol and sequencing primitives for native-ipc"
homepage = "https://github.com/ro-ag/native-ipc-rs"
documentation = "https://docs.rs/native-ipc-core"
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 = ["std"]
std = []
[lib]
name = "native_ipc_core"
path = "src/lib.rs"
[[example]]
name = "bounded_codec"
path = "examples/bounded_codec.rs"
[[example]]
name = "checked_layout"
path = "examples/checked_layout.rs"
[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"