2022-07-17 17:04:48 -04:00
|
|
|
[package]
|
|
|
|
|
name = "huellas"
|
2023-04-01 23:22:52 -04:00
|
|
|
version = "0.2.0"
|
2022-07-17 17:04:48 -04:00
|
|
|
edition = "2021"
|
2023-03-09 23:54:02 -03:00
|
|
|
license = "AGPL-3.0"
|
|
|
|
|
links = "sqlite"
|
2022-07-17 17:04:48 -04:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-01 23:16:36 -04:00
|
|
|
axum = "0.6.12"
|
|
|
|
|
tracing = "0.1.37"
|
|
|
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
|
|
|
|
tokio = { version = "1.27.0", features = ["macros", "signal"] }
|
|
|
|
|
dotenvy = "0.15.7"
|
|
|
|
|
tower-http = { version = "0.4.0", features = ["fs"] }
|
|
|
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.95"
|
|
|
|
|
futures = "0.3.28"
|
2023-04-13 22:56:13 -04:00
|
|
|
axum-test-helper = "0.2.0"
|
2022-07-17 17:04:48 -04:00
|
|
|
|
|
|
|
|
[dependencies.sqlx]
|
2023-04-01 23:16:36 -04:00
|
|
|
version = "0.6.3"
|
2022-07-17 17:04:48 -04:00
|
|
|
default-features = false
|
2023-04-01 23:16:36 -04:00
|
|
|
features = ["runtime-tokio-native-tls", "macros", "offline", "migrate", "sqlite"]
|