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"] }
|
2023-05-22 20:50:59 -04:00
|
|
|
tokio = { version = "1.27.0", features = ["macros", "signal", "rt-multi-thread"] }
|
2023-04-01 23:16:36 -04:00
|
|
|
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:57:25 -04:00
|
|
|
axum-test-helper = "0.2.0"
|
2023-05-22 20:50:59 -04:00
|
|
|
sqlx ={ version = "0.7.0-alpha.3", default-features = false, features = ["runtime-tokio", "tls-rustls", "macros", "migrate", "sqlite"] }
|