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.
34 lines
976 B
34 lines
976 B
[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]
|
|
migration = { version = "0.1.0", path = "./migration" }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
dotenvy = { workspace = true }
|
|
envy = { workspace = true }
|
|
tokio = { version = "^1.20.1", features = ["full"] }
|
|
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
|
|
rocket = { version = "0.5.0-rc.2", features = ["json"] }
|
|
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"
|
|
pretty_env_logger = "0.4.0"
|
|
log = "0.4.17"
|
|
futures = "0.3.25"
|
|
rocket_contrib = "0.4.11"
|
|
async-trait = "0.1.61"
|
|
sea-orm-rocket = "0.5.2"
|
|
thiserror = "1.0.38"
|
|
slug = "0.1.4"
|