[package]
edition = "2021"
rust-version = "1.74"
name = "nono"
version = "0.6.0"
authors = ["Luke Hinds"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Capability-based sandboxing library using Landlock (Linux) and Seatbelt (macOS)"
homepage = "https://github.com/always-further/nono"
readme = "README.md"
keywords = [
"sandbox",
"security",
"capability",
"landlock",
"seatbelt",
]
categories = [
"os",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/always-further/nono"
[lib]
name = "nono"
path = "src/lib.rs"
[dependencies.getrandom]
version = "0.4"
[dependencies.globset]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.keyring]
version = "3"
[dependencies.libc]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.walkdir]
version = "2"
[dependencies.zeroize]
version = "1"
features = ["alloc"]
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.keyring]
version = "3"
features = ["sync-secret-service"]
[target.'cfg(target_os = "linux")'.dependencies.landlock]
version = "0.4"
[target.'cfg(target_os = "linux")'.dependencies.nix]
version = "0.31.1"
features = [
"fs",
"user",
]
[target.'cfg(target_os = "macos")'.dependencies.keyring]
version = "3"
features = ["apple-native"]
[target.'cfg(target_os = "macos")'.dependencies.nix]
version = "0.31.1"
features = [
"fs",
"user",
]