feat(context): add Context model with admin-based ACL system

This commit is contained in:
Timur Gordon
2025-11-20 08:51:52 +01:00
parent 4e3d7a815d
commit 5d8189a653
7 changed files with 1400 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
[package]
name = "hero-context"
version.workspace = true
edition.workspace = true
description = "Context model for Hero platform"
license = "MIT OR Apache-2.0"
[dependencies]
serde.workspace = true
serde_json.workspace = true
chrono.workspace = true
rhai = { version = "1.19", features = ["sync"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
uuid.workspace = true
[target.'cfg(target_arch = "wasm32")'.dependencies]
uuid = { workspace = true, features = ["js"] }