2026-03-24 15:12:56 +08:00
|
|
|
[package]
|
|
|
|
|
name = "aether-data"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
description = "Shared data access contracts and config for Aether Rust services"
|
2026-05-05 18:27:36 +08:00
|
|
|
build = "build.rs"
|
2026-03-24 15:12:56 +08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-04-26 21:47:01 +08:00
|
|
|
aether-ai-formats.workspace = true
|
2026-04-07 02:50:19 +08:00
|
|
|
aether-data-contracts.workspace = true
|
2026-03-24 15:12:56 +08:00
|
|
|
aether-cache.workspace = true
|
2026-03-31 19:19:04 +08:00
|
|
|
aether-wallet.workspace = true
|
2026-03-24 15:12:56 +08:00
|
|
|
async-trait.workspace = true
|
2026-03-31 19:19:04 +08:00
|
|
|
chrono.workspace = true
|
2026-05-05 18:27:36 +08:00
|
|
|
chrono-tz.workspace = true
|
2026-03-24 15:12:56 +08:00
|
|
|
futures-util.workspace = true
|
2026-04-13 14:01:22 +08:00
|
|
|
flate2.workspace = true
|
2026-03-24 15:12:56 +08:00
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
2026-04-05 20:23:16 +08:00
|
|
|
sha2.workspace = true
|
2026-04-03 16:26:16 +08:00
|
|
|
sqlx = { workspace = true, features = ["migrate", "macros"] }
|
2026-03-24 15:12:56 +08:00
|
|
|
thiserror.workspace = true
|
|
|
|
|
tokio.workspace = true
|
2026-04-10 17:44:55 +08:00
|
|
|
tracing.workspace = true
|
2026-03-24 15:12:56 +08:00
|
|
|
url.workspace = true
|
|
|
|
|
uuid.workspace = true
|