[package]
edition = "2024"
rust-version = "1.98"
name = "act-policy"
version = "0.13.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Capability policy decision core (PDP) for the ACT toolchain"
homepage = "https://actcore.dev"
readme = false
keywords = [
"act",
"capability",
"policy",
"wasm",
"security",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/actcore/act-cli"
[features]
default = ["host"]
host = ["tokio"]
[lib]
name = "act_policy"
path = "src/lib.rs"
[[test]]
name = "policy_properties"
path = "tests/policy_properties.rs"
[dependencies.act-types]
version = "0.14"
[dependencies.async-trait]
version = "0.1"
[dependencies.cidr]
version = "0.3"
[dependencies.globset]
version = "0.4"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.shellexpand]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.52"
features = [
"net",
"sync",
"time",
]
optional = true
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.proptest]
version = "1.11"
[dev-dependencies.tokio]
version = "1.52"
features = ["full"]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
similar_names = "allow"
too_many_lines = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1