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]
|
2021-03-09 18:59:10 +00:00
|
|
|
actix-web = "3.3.2"
|
|
|
|
sqlx = { version = "0.5.1", default-features = false, features = [ "runtime-async-std-rustls", "postgres", "chrono" ] }
|
2021-08-18 21:22:50 +00:00
|
|
|
env_logger = "0.9.0"
|
2021-03-09 18:59:10 +00:00
|
|
|
log = "0.4.14"
|
|
|
|
actix-files = "0.5.0"
|
|
|
|
async-std = "1.9.0"
|
|
|
|
actix-multipart = "0.3.0"
|
|
|
|
futures = "0.3.13"
|
|
|
|
rand = "0.8.3"
|
|
|
|
chrono = "0.4.19"
|
2020-07-13 13:22:33 +00:00
|
|
|
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"
|