jmserver/Cargo.toml

28 lines
926 B
TOML
Raw Permalink Normal View History

2021-07-19 22:29:03 +02:00
[package]
name = "jmserver"
version = "0.1.0"
authors = ["Timo Ley <timo@leyt.xyz>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-08-26 17:45:38 +02:00
tokio = { version = "1.0", features = ["full"] }
2021-12-23 11:32:48 +01:00
axum = { version = "0.2.8", features = ["headers", "multipart"] }
2022-01-04 20:06:57 +01:00
hyper = "0.14.16"
2021-08-26 17:45:38 +02:00
tower = { version = "0.4", features = ["util", "timeout"] }
2021-12-17 23:50:03 +01:00
tower-http = { version = "0.1", features = ["add-extension", "trace", "fs", "set-header"] }
2021-07-19 22:29:03 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.51"
2023-07-06 17:35:23 +02:00
sqlx = { version = "0.3", features = [ "postgres" ] }
2021-07-19 22:29:03 +02:00
rand = "0.8.0"
2021-12-17 23:50:03 +01:00
structopt = "0.3.22"
2021-12-18 20:04:34 +01:00
toml = "0.5.8"
2021-12-23 11:32:48 +01:00
reqwest = { version = "0.11", features = ["stream", "multipart", "json"] }
2021-12-18 20:04:34 +01:00
new_mime_guess = "3.0.2"
headers = "0.3.5"
2021-12-18 21:15:06 +01:00
url = {version = "2.2.2", features = ["serde"]}
2021-12-23 11:32:48 +01:00
askama = "0.10"
2022-01-02 17:25:23 +01:00
urlencoding = "2.1.0"
2022-01-08 19:01:19 +01:00
thiserror = "1.0.30"
async-trait = "0.1.51"