22 lines
492 B
TOML
22 lines
492 B
TOML
[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"
|