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

44 lines
1.2 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", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
dotenvy = "0.15"
envy = "0.4"
serde_json = "1"
migration = { version = "0.1.0", path = "./migration" }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
axum = { version = "0.6", features = ["headers", "macros"] }
hyper = { version = "0.14", features = ["full"] }
tower = "0.4"
tower-cookies = "0.9"
sea-orm = { version = "0.12", 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"] }
http = "0.2"
tracing = "0.1"
rust-argon2 = "1"
rand = "0.8"
jsonwebtoken = "8"
cookie = { version = "0.17", features = [ "secure" ] }
rsa = { version = "0.9.2", features = [ "pem" ] }
time = "0.3"