Files
Aether/crates/aether-data/query/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

14 lines
315 B
TOML

[package]
name = "aether-data-query"
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Small SQL dialect helpers for Aether data repositories"
[dependencies]
sqlx.workspace = true
[dev-dependencies]
sqlx = { workspace = true, features = ["postgres"] }