zero-to-axum/Cargo.toml
2025-05-22 11:57:37 -05:00

34 lines
1.3 KiB
TOML

[package]
name = "zero-to-axum"
version = "0.1.0-dev"
authors = [ "azdle <azdle@azdle.net>" ]
edition = "2021"
description = "An axum based HTTP server template."
repository = "https://git.idlestate.org/azdle/zero-to-axum"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = { version = "1.0.71", features = ["backtrace"] }
axum = {version = "0.8", features = ["tokio", "http1", "http2"] }
axum-extra = { version = "0.10", features = ["cookie-private", "typed-header"] }
config = { version = "0.15", features = ["toml"] }
futures-util = "0.3"
hyper = "1.1"
pin-project = "1.1.0"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.99"
sqlx = { version = "0.8.5", features = ["runtime-tokio", "macros", "postgres", "uuid", "chrono", "migrate"] }
tar = "0.4.44"
thiserror = "2.0"
tokio = { version = "1.28.2", features = ["full"] }
tokio-stream = "0.1"
tokio-util = "0.7.15"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features =["env-filter"] }
uuid = { version = "1.16.0", features = ["v4"] }
[dev-dependencies]
bollard = { git = "https://github.com/fussybeaver/bollard.git", rev = "50a25a0" }
http-body-util = "0.1.3"
reqwest = { version = "0.12", features = ["cookies"] }
test-log = { version = "0.2.12", default-features = false, features = ["trace"] }