Files
Aether/crates/aether-data/adapters/mysql/Cargo.toml
T
elky 778cfb1a5c feat(data): complete portable SQL backend parity
Align MySQL and SQLite schemas, migrations, usage, stats, export, and backfill behavior with the shared data contracts. Extend gateway startup and maintenance support across all SQL drivers.
2026-07-25 21:28:21 +08:00

25 lines
676 B
TOML

[package]
name = "aether-data-mysql"
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "MySQL repositories, pools, and migrations for Aether"
[dependencies]
aether-ai-formats.workspace = true
aether-data-contracts.workspace = true
aether-data-query.workspace = true
async-trait.workspace = true
chrono.workspace = true
chrono-tz.workspace = true
flate2.workspace = true
serde_json.workspace = true
sha2.workspace = true
sqlx = { workspace = true, features = ["mysql", "runtime-tokio-rustls", "chrono", "migrate", "macros"] }
tracing.workspace = true
uuid.workspace = true
[dev-dependencies]
tokio.workspace = true