kjuulh 6789e3f14a
All checks were successful
continuous-integration/drone/push Build is passing
feat: add backoff
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-04-13 13:27:20 +02:00

26 lines
737 B
TOML

[package]
name = "contractor"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
clap.workspace = true
dotenv.workspace = true
axum.workspace = true
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "time"] }
uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
futures = "0.3.30"
reqwest = {version = "0.12.3", default-features = false, features = ["json", "rustls-tls"]}
itertools = "0.12.1"
regex = "1.10.4"
serde_json = "1.0.115"
dagger-sdk = "0.9.8"
backon = "0.4.4"