19 lines
398 B
TOML
19 lines
398 B
TOML
[package]
|
|
name = "libertas_infra"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
libertas_core = { path = "../libertas_core" }
|
|
sqlx = { version = "0.8.6", features = [
|
|
"runtime-tokio",
|
|
"postgres",
|
|
"uuid",
|
|
"chrono",
|
|
"sqlite",
|
|
] }
|
|
async-trait = "0.1.89"
|
|
uuid = { version = "1.18.1", features = ["v4"] }
|
|
chrono = "0.4.42"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|