mirror of
https://github.com/mvvasilev/findtheti.me.git
synced 2025-04-19 13:39:52 +03:00
19 lines
636 B
TOML
19 lines
636 B
TOML
|
[package]
|
||
|
name = "findtheti-me"
|
||
|
version = "0.1.0"
|
||
|
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"] }
|
||
|
chrono = { version = "0.4.31", features = ["serde"] }
|
||
|
dotenv = "0.15.0"
|
||
|
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"] }
|