[package]
edition = "2024"
rust-version = "1.97"
name = "native-ipc"
version = "0.2.0"
authors = ["Rodrigo Agurto"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Secure-by-construction foundations for native cross-process IPC"
homepage = "https://github.com/ro-ag/native-ipc-rs"
documentation = "https://docs.rs/native-ipc"
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"
[package.metadata.docs.rs]
targets = [
"aarch64-apple-darwin",
"aarch64-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
]
[features]
default = ["std"]
std = ["native-ipc-core/std"]
[lib]
name = "native_ipc"
path = "src/lib.rs"
[[example]]
name = "common_memory"
path = "examples/common_memory.rs"
[dependencies.native-ipc-core]
version = "0.2.0"
[dependencies.native-ipc-platform]
version = "0.2.0"
[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "deny"