upub/Cargo.toml

23 lines
740 B
TOML
Raw Normal View History

[package]
name = "anwt"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-09 17:07:55 +01:00
axum = "0.7.3"
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.5.3", features = ["derive"] }
paste = "1.0.14"
reqwest = { version = "0.11.26", features = ["json"] }
sea-orm = { version = "0.12.14", features = ["macros", "sqlx-sqlite", "runtime-tokio-rustls"] }
sea-orm-migration = "0.12.15"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
2024-03-16 20:09:06 +01:00
thiserror = "1.0.58"
2024-02-09 17:07:55 +01:00
tokio = { version = "1.35.1", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
2024-03-20 07:55:03 +01:00
uuid = { version = "1.8.0", features = ["v4"] }