Files
boc/aamos-ledger-rust/crates/aamos-api/Cargo.toml
T
Bernt bae705aa97 ARCHITECTURE: NFC roadmap, edge AI, audit logging
- Add NFC ePassport roadmap (ICAO 9303, eIDAS)
- Add TensorFlow.js edge face detection (BlazeFace)
- Add structured audit logger (GDPR-compliant)
- Risk scoring support

Part of KYC Apple Native UX v1.1.0
2026-06-29 16:24:48 +00:00

42 lines
1.2 KiB
TOML

[package]
name = "aamos-api"
version = "0.1.0"
edition = "2021"
[dependencies]
aamos-core = { path = "../aamos-core" }
aamos-auth = { path = "../aamos-auth" }
aamos-audit = { path = "../aamos-audit" }
aamos-db = { path = "../aamos-db" }
aamos-ledger = { path = "../aamos-ledger" }
aamos-reports = { path = "../aamos-reports" }
aamos-sie4 = { path = "../aamos-sie4" }
aamos-tax = { path = "../aamos-tax" }
aamos-payroll = { path = "../aamos-payroll" }
aamos-bank-import = { path = "../aamos-bank-import" }
aamos-hermes = { path = "../aamos-hermes" }
axum = { workspace = true }
tokio = { workspace = true }
tower = { workspace = true }
tower-http = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sqlx = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
thiserror = { workspace = true }
anyhow = { workspace = true }
jsonwebtoken = { workspace = true }
redis = { workspace = true }
reqwest = { workspace = true }
garde = { workspace = true }
dotenvy = { workspace = true }
metrics = { workspace = true }
metrics-exporter-prometheus = { workspace = true }
[dev-dependencies]
tokio-test = "0.4"