Files
Aether/crates/aether-data/runtime/Cargo.toml
T
elky 2281f2b754 refactor(data): remove MySQL and SQLite support
Use PostgreSQL as the only database backend across runtime, schema tooling, installation, Compose, and CI. Update regression tests and reject removed drivers explicitly.
2026-09-07 00:09:42 +08:00

35 lines
965 B
TOML

[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"
build = "build.rs"
[features]
default = ["postgres"]
postgres = ["dep:aether-data-postgres", "sqlx/postgres"]
all-drivers = ["postgres"]
[dependencies]
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
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