mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-11 21:50:19 +08:00
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.
25 lines
676 B
TOML
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
|