This commit is contained in:
2025-04-20 08:56:34 +02:00
parent 25983f701a
commit 4b2e8ca6b9
16 changed files with 343 additions and 112 deletions

21
acldb/Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "acldb"
version = "0.1.0"
edition = "2021"
description = "HeroDB ACL Layer: Implements ACL logic, data ops, and Actix RPC server as specified in instructions.md."
[dependencies]
ourdb = { path = "../ourdb" }
tst = { path = "../tst" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
actix-web = "4"
actix-rt = "2"
actix-cors = "0.6"
openapi = "0.6"
tokio = { version = "1", features = ["full"] }
log = "0.4"
thiserror = "1.0"
sha2 = "0.10"
hex = "0.4"