datatrash/Cargo.toml

33 lines
794 B
TOML
Raw Normal View History

2020-07-08 19:26:46 +00:00
[package]
name = "datatrash"
2022-07-02 23:02:27 +00:00
version = "1.1.4"
2020-07-08 19:26:46 +00:00
authors = ["neri"]
2021-10-26 20:30:10 +00:00
edition = "2021"
2020-07-08 19:26:46 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-07-02 20:28:48 +00:00
actix-web = { version = "4.1.0", default-features = false, features = [
"macros",
"compress-gzip",
"compress-zstd",
] }
2022-07-02 20:28:48 +00:00
sqlx = { version = "0.6.0", default-features = false, features = [
"runtime-tokio-rustls",
"postgres",
"time",
] }
2021-08-18 21:22:50 +00:00
env_logger = "0.9.0"
2022-07-02 20:28:48 +00:00
log = "0.4.17"
actix-files = "0.6.1"
tokio = { version = "1.19.2", features = ["rt", "macros", "sync"] }
2022-02-26 23:34:57 +00:00
actix-multipart = "0.4.0"
2022-04-23 22:37:20 +00:00
futures-util = "0.3.21"
rand = "0.8.5"
2022-07-02 20:28:48 +00:00
time = "0.3.11"
htmlescape = "0.3.1"
2021-08-18 21:22:50 +00:00
urlencoding = "2.1.0"
2022-04-23 22:37:20 +00:00
tree_magic_mini = { version = "3.0.3", features = ["with-gpl-data"] }
2021-03-09 22:36:24 +00:00
mime = "0.3.16"
2021-09-09 20:18:42 +00:00
url = "2.2.2"