Files
Portabase.Agent/Cargo.toml
T
charlesgauthereau bb3f254e6c chore(release): 0.1.1
2026-01-07 22:31:20 +01:00

32 lines
770 B
TOML

[package]
name = "portabase-agent"
version = "0.1.1"
edition = "2024"
[dependencies]
redis = { version = "1.0.2", features = ["aio", "tokio-comp"] }
cron = "0.15.0"
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
dotenvy = "0.15"
once_cell = "1.17"
base64 = "0.22.1"
thiserror = "2.0.17"
log = "0.4.29"
toml = "0.9.10"
reqwest = { version = "0.13.1", features = ["json", "blocking", "multipart"] }
anyhow = "1.0.100"
tokio = { version = "1.49.0", features = ["rt", "rt-multi-thread", "macros", "fs"] }
async-trait = "0.1.89"
tempfile = "3.24.0"
openssl = "0.10.75"
hex = "0.4.3"
flate2 = "1.1.5"
tar = "0.4.44"
[[bin]]
name = "app"
path = "src/main.rs"