huellas/Cargo.toml

42 lines
954 B
TOML
Raw Permalink Normal View History

2022-07-17 17:04:48 -04:00
[package]
name = "huellas"
version = "0.3.0"
2022-07-17 17:04:48 -04:00
edition = "2021"
license = "AGPL-3.0"
2022-07-17 17:04:48 -04:00
[dependencies]
anyhow = "1.0.80"
axum = { version = "0.7.4", default-features = false, features = [
"tracing",
"tokio",
"http1",
"http2",
] }
axum-msgpack = "0.4.0"
dotenvy = "0.15.7"
futures = { version = "0.3.30", default-features = false }
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", default-features = false, features = [
"macros",
"migrate",
"runtime-tokio",
"sqlite",
"tls-rustls",
] }
tokio = { version = "1.36.0", default-features = false, features = [
"macros",
"rt-multi-thread",
"signal",
] }
tower-http = { version = "0.5.2", default-features = false, features = ["fs"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"env-filter",
"fmt",
"tracing",
"tracing-log",
] }
[dev-dependencies]
axum-test = { version = "14.4.0", features = ["msgpack"] }