Files
Aether/crates/aether-data/runtime/Cargo.toml
T

35 lines
965 B
TOML
Raw Normal View History

[package]
name = "aether-data"
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Runtime data-access facade and database backend composition for Aether"
2026-05-05 18:27:36 +08:00
build = "build.rs"
[features]
default = ["postgres"]
postgres = ["dep:aether-data-postgres", "sqlx/postgres"]
all-drivers = ["postgres"]
[dependencies]
2026-04-26 21:47:01 +08:00
aether-ai-formats.workspace = true
aether-data-contracts.workspace = true
aether-data-postgres = { workspace = true, optional = true }
aether-cache.workspace = true
aether-wallet.workspace = true
async-trait.workspace = true
chrono.workspace = true
2026-05-05 18:27:36 +08:00
chrono-tz.workspace = true
futures-util.workspace = true
flate2.workspace = true
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
sqlx = { workspace = true, features = ["bigdecimal", "migrate", "macros"] }
thiserror.workspace = true
tokio.workspace = true
tracing.workspace = true
url.workspace = true
uuid.workspace = true