cedar-policy-validator 2.2.0

Validator for the Cedar Policy language.
Documentation
[package]
name = "cedar-policy-validator"
edition = "2021"

version = "2.2.0"
license = "Apache-2.0"
categories = ["compilers", "config"]
description = "Validator for the Cedar Policy language."
keywords = ["cedar", "authorization", "policy", "security"]
homepage = "https://cedarpolicy.com"
repository = "https://github.com/cedar-policy/cedar"

[dependencies]
cedar-policy-core = { version = "2.2.0", path = "../cedar-policy-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_with = "3.0"
arbitrary = { version = "1", features = ["derive"] }
thiserror = "1.0"
itertools = "0.10"
unicode-security = "0.1.0"
smol_str = { version = "0.2", features = ["serde"] }
stacker = "0.1.15"

[features]
# by default, enable all Cedar extensions
default = ["ipaddr", "decimal"]
# when enabling a feature, make sure that the Core feature is also enabled
ipaddr = ["cedar-policy-core/ipaddr"]
decimal = ["cedar-policy-core/decimal"]