feat(libertas_api): add dependency on libertas_infra and async-nats refactor(libertas_api): consolidate config loading and add broker_url refactor(libertas_api): integrate NATS client into app state and services feat(libertas_core): introduce config module for database and server settings fix(libertas_core): enhance error handling with detailed messages feat(libertas_infra): create infrastructure layer with database repositories feat(libertas_infra): implement Postgres repositories for media and albums feat(libertas_worker): add worker service to process media jobs via NATS
22 lines
394 B
TOML
22 lines
394 B
TOML
[package]
|
|
name = "libertas_core"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
async-trait = "0.1.89"
|
|
bytes = "1.10.1"
|
|
chrono = "0.4.42"
|
|
futures = "0.3.31"
|
|
thiserror = "2.0.17"
|
|
uuid = "1.18.1"
|
|
sqlx = { version = "0.8.6", features = [
|
|
"runtime-tokio",
|
|
"postgres",
|
|
"uuid",
|
|
"chrono",
|
|
"sqlite",
|
|
] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|