You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
589 B

[package]
name = "applib"
version = "0.1.0"
edition = "2024"
[dependencies]
once_cell = "1.21.3"
clap = { version = "4.5", features = ["derive", "env"] }
const_format = "0.2.35"
config = "0.15.19"
tracing = "0.1"
tokio = { version = "1.48", features = ["full"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2.0"
async-trait = "0.1"
parking_lot = "0.12"
sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite", "chrono", "migrate"] }
[dev-dependencies]
mockall = "0.14.0"