mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-12 22:20:19 +08:00
Consolidate subscription usage policy enforcement, privacy-safe persistence, and gateway security hardening into one reviewable change. Includes bounded HTTP and execution envelopes, header and protocol guards, DNS and relay validation, authentication and secret projection hardening, secure backup/install paths, and regression coverage.
25 lines
777 B
TOML
25 lines
777 B
TOML
[package]
|
|
name = "aether-testkit"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Shared integration test helpers for Aether Rust services"
|
|
|
|
[features]
|
|
default = []
|
|
gateway = ["dep:aether-gateway", "dep:aether-runtime-state"]
|
|
postgres = ["dep:aether-data", "dep:sqlx"]
|
|
|
|
[dependencies]
|
|
aether-contracts.workspace = true
|
|
aether-loadtools.workspace = true
|
|
aether-data = { workspace = true, optional = true }
|
|
aether-gateway = { workspace = true, features = ["testkit"], optional = true }
|
|
aether-runtime.workspace = true
|
|
aether-runtime-state = { workspace = true, optional = true }
|
|
axum.workspace = true
|
|
http.workspace = true
|
|
sqlx = { workspace = true, features = ["postgres"], optional = true }
|
|
tokio.workspace = true
|