2022-07-17 17:04:48 -04:00
|
|
|
[package]
|
|
|
|
|
name = "huellas"
|
2023-05-22 21:14:35 -04:00
|
|
|
version = "0.2.1"
|
2022-07-17 17:04:48 -04:00
|
|
|
edition = "2021"
|
2023-03-09 23:54:02 -03:00
|
|
|
license = "AGPL-3.0"
|
2022-07-17 17:04:48 -04:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-08-04 23:46:34 -04:00
|
|
|
axum = { version = "0.6.20", features = ["tracing"] }
|
2023-04-01 23:16:36 -04:00
|
|
|
tracing = "0.1.37"
|
2023-05-22 21:07:17 -04:00
|
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
2023-08-22 01:05:13 -04:00
|
|
|
tokio = { version = "1.32.0", features = [
|
2023-08-04 23:46:34 -04:00
|
|
|
"macros",
|
|
|
|
|
"signal",
|
|
|
|
|
"rt-multi-thread",
|
|
|
|
|
] }
|
2023-04-01 23:16:36 -04:00
|
|
|
dotenvy = "0.15.7"
|
2023-08-04 23:46:34 -04:00
|
|
|
tower-http = { version = "0.4.3", features = ["fs"] }
|
2023-08-22 01:05:13 -04:00
|
|
|
serde = { version = "1.0.185", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.105"
|
2023-04-01 23:16:36 -04:00
|
|
|
futures = "0.3.28"
|
2023-07-04 19:44:36 -04:00
|
|
|
axum-test-helper = "0.3.0"
|
2023-08-04 23:46:34 -04:00
|
|
|
sqlx = { version = "0.7.1", default-features = false, features = [
|
|
|
|
|
"runtime-tokio",
|
|
|
|
|
"tls-rustls",
|
|
|
|
|
"macros",
|
|
|
|
|
"migrate",
|
|
|
|
|
"sqlite",
|
|
|
|
|
] }
|
2023-08-22 01:05:13 -04:00
|
|
|
anyhow = "1.0.75"
|