28 lines
692 B
TOML
28 lines
692 B
TOML
[package]
|
|
name = "libertas_worker"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
libertas_core = { path = "../libertas_core" }
|
|
libertas_infra = { path = "../libertas_infra" }
|
|
|
|
anyhow = "1.0.100"
|
|
async-nats = "0.44.2"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
tokio = { version = "1.48.0", features = ["full"] }
|
|
sqlx = { version = "0.8.6", features = [
|
|
"runtime-tokio",
|
|
"postgres",
|
|
"uuid",
|
|
"chrono",
|
|
"sqlite",
|
|
] }
|
|
futures-util = "0.3.31"
|
|
bytes = "1.10.1"
|
|
uuid = { version = "1.18.1", features = ["v4", "serde"] }
|
|
nom-exif = { version = "2.5.4", features = ["serde", "tokio", "async"] }
|
|
async-trait = "0.1.89"
|
|
xmp_toolkit = "1.11.0"
|