[package]
edition = "2024"
name = "wacl"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Access Control List and authentication with SHA-256 password hashing"
homepage = "https://github.com/webc-site/wedb/tree/main/wacl"
readme = "README.md"
keywords = [
"acl",
"authentication",
"authorization",
"security",
]
categories = ["authentication"]
license = "MulanPSL-2.0"
repository = "https://github.com/webc-site/wedb.git"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
[lib]
name = "wacl"
path = "src/lib.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.bitflags]
version = "2.13.2"
[dependencies.gxhash]
version = "3.5.0"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.sha2]
version = "0.11.0"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.whasher]
version = "0.1.6"
[dependencies.wresp]
version = "0.1.1"
[dev-dependencies.aok]
version = "0.1.18"
[dev-dependencies.ctor]
version = "1.0.13"
[dev-dependencies.log]
version = "0.4.34"
[dev-dependencies.log_init]
version = "0.1.39"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
arc_with_non_send_sync = "allow"