[package] name = "accumulo-access" version = "0.1.9" edition = "2021" authors = ["Lars Wilhelmsen "] description = "Rust API for parsing and evaluating Accumulo Access Expressions" license = "MIT OR Apache-2.0" repository = "https://github.com/larsw/accumulo-access-rs" readme = "README.md" [features] default = ["caching"] caching = ["dep:cached"] [lib] crate-type = ["cdylib", "rlib"] [dependencies] cached = { version = "0.51", optional = true, features = ["ahash"] } thiserror = "1.0" serde = { version = "1.0" } serde_json = { version = "1.0" } [dev-dependencies] rstest = "0.19"