mirror of
https://github.com/mvvasilev/findtheti.me.git
synced 2025-04-11 18:15:01 +03:00
22 lines
844 B
TOML
22 lines
844 B
TOML
[package]
|
|
name = "findtheti-me"
|
|
version = "0.1.7"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7.3", features = ["macros", "tokio"] }
|
|
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
|
|
chrono = { version = "0.4.31", features = ["serde"] }
|
|
dotenv = "0.15.0"
|
|
env_logger = "0.10.1"
|
|
futures = "0.3.30"
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0.195", features = ["derive"] }
|
|
serde_json = "1.0.111"
|
|
sqlx = { version = "0.7.3", features = ["runtime-tokio", "postgres", "chrono"] }
|
|
tokio = {version = "1.35.1", features = ["macros", "rt-multi-thread", "rt", "net"]}
|
|
tower-http = { version = "0.5.0", features = ["fs", "trace", "cors"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "std"] }
|