2020-07-08 19:26:46 +00:00
|
|
|
[package]
|
|
|
|
name = "datatrash"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["neri"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-07-14 11:45:14 +00:00
|
|
|
actix-web = { version = "2.0.0", default-features = false, features = [] }
|
2020-07-13 13:59:16 +00:00
|
|
|
sqlx = { version = "0.3.5", default-features = false, features = [ "runtime-async-std", "postgres", "chrono" ] }
|
2020-07-08 19:26:46 +00:00
|
|
|
actix-rt = "1.1.1"
|
|
|
|
env_logger = "0.7.1"
|
|
|
|
log = "0.4.8"
|
|
|
|
actix-files = "0.2.2"
|
|
|
|
async-std = "1.6.2"
|
|
|
|
actix-multipart = "0.2.0"
|
|
|
|
futures = "0.3.5"
|
|
|
|
rand = "0.7.3"
|
|
|
|
chrono = "0.4.13"
|
2020-07-12 00:26:11 +00:00
|
|
|
openssl-sys = "*"
|
2020-07-13 13:22:33 +00:00
|
|
|
htmlescape = "0.3.1"
|
2020-07-12 00:26:11 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
vendored = ["openssl-sys/vendored"]
|