You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fast-insiders/server/Cargo.toml

36 lines
1.0 KiB

[package]
name = "server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.23", features = ["serde"] }
serde = { version = "1.0.152", features = ["derive"] }
dotenvy = "0.15.6"
envy = "0.4.2"
serde_json = "1.0.91"
migration = { version = "0.1.0", path = "./migration" }
tokio = { version = "^1.20.1", features = ["full"] }
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
axum = "0.6.12"
hyper = { version = "0.14.25", features = ["full"] }
tower = "0.4"
sea-orm = { version = "0.11.0", features = [
"runtime-tokio-rustls",
"macros",
"sqlx-mysql",
] }
lopdf = "0.29.0"
bytes = { version = "1.3.0", features = ["serde"] }
lazy_static = "1.4.0"
log = "0.4.17"
futures = "0.3.25"
async-trait = "0.1.61"
thiserror = "1.0.38"
slug = "0.1.4"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower-http = { version = "0.4", features = ["trace", "cors"] }
tracing = "0.1"