datatrash/Cargo.toml

25 lines
769 B
TOML
Raw Normal View History

2020-07-08 19:26:46 +00:00
[package]
name = "datatrash"
version = "0.1.0"
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-02-26 23:34:57 +00:00
actix-web = { version = "4.0", default-features = false, features = ["macros", "compress-gzip", "compress-zstd"]}
2022-02-27 00:50:29 +00:00
sqlx = { version = "0.5.1", default-features = false, features = [ "runtime-tokio-rustls", "postgres", "time" ] }
2021-08-18 21:22:50 +00:00
env_logger = "0.9.0"
log = "0.4.14"
2022-02-26 23:34:57 +00:00
actix-files = "0.6.0"
tokio = { version = "1.17.0", features=["rt", "macros", "sync"] }
actix-multipart = "0.4.0"
futures-util = "0.3"
rand = "0.8.3"
2022-02-27 00:50:29 +00:00
time = "0.2.7"
htmlescape = "0.3.1"
2021-08-18 21:22:50 +00:00
urlencoding = "2.1.0"
2021-08-18 21:32:58 +00:00
tree_magic_mini = { version = "3.0.0", 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"