Files
zclaw_openfang/crates/zclaw-runtime/Cargo.toml
iven 8aed363fc8
Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
feat(middleware): add DataMaskingMiddleware — sensitive entity protection (Chunk 3)
Priority 90 — runs before Compaction@100 and Memory@150.
Detects and replaces company names, money amounts, phone numbers,
emails, and ID card numbers with deterministic tokens (__ENTITY_N__).
External callers can restore originals via DataMasker::unmask().
2026-04-07 08:01:05 +08:00

55 lines
1.1 KiB
TOML

[package]
name = "zclaw-runtime"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "ZCLAW runtime with LLM drivers and agent loop"
[dependencies]
zclaw-types = { workspace = true }
zclaw-memory = { workspace = true }
zclaw-growth = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
futures = { workspace = true }
async-stream = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
thiserror = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
tracing = { workspace = true }
async-trait = { workspace = true }
regex = { workspace = true }
# HTTP client
reqwest = { workspace = true }
# URL parsing
url = { workspace = true }
# Secrets
secrecy = { workspace = true }
# Random
rand = { workspace = true }
# Crypto for hashing
sha2 = { workspace = true }
# Base64 encoding
base64 = { workspace = true }
# Directory helpers
dirs = { workspace = true }
# Shell parsing
shlex = { workspace = true }
[dev-dependencies]
tempfile = { workspace = true }