mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-17 00:17:46 +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.
38 lines
1020 B
TOML
38 lines
1020 B
TOML
[package]
|
|
name = "aether-provider-transport"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Provider transport core extracted from aether-gateway"
|
|
|
|
[dependencies]
|
|
aether-ai-formats.workspace = true
|
|
aether-contracts.workspace = true
|
|
aether-crypto.workspace = true
|
|
aether-data-contracts.workspace = true
|
|
aether-http.workspace = true
|
|
aether-oauth.workspace = true
|
|
aether-runtime-state.workspace = true
|
|
aether-video-tasks-core.workspace = true
|
|
async-trait.workspace = true
|
|
base64.workspace = true
|
|
chrono.workspace = true
|
|
crypto_box.workspace = true
|
|
ed25519-dalek.workspace = true
|
|
http.workspace = true
|
|
regex.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2 = { workspace = true, features = ["oid"] }
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
url.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
aws-lc-rs.workspace = true
|
|
axum = { version = "0.8", features = ["ws"] }
|