datatrash/Cargo.toml

44 lines
1018 B
TOML
Raw Normal View History

2020-07-08 19:26:46 +00:00
[package]
name = "datatrash"
version = "2.0.5"
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-08-21 16:44:12 +00:00
actix-web = { version = "4.2.1", default-features = false, features = [
"macros",
"compress-gzip",
"compress-zstd",
] }
2022-08-21 16:44:12 +00:00
sqlx = { version = "0.6.2", default-features = false, features = [
"runtime-tokio-rustls",
"postgres",
"time",
] }
2023-01-27 19:56:44 +00:00
env_logger = { version = "0.10.0", default-features = false, features = [
2022-10-08 10:42:20 +00:00
"humantime",
] }
2022-07-02 20:28:48 +00:00
log = "0.4.17"
2022-08-21 16:44:12 +00:00
actix-files = "0.6.2"
tokio = { version = "1.21.2", features = ["rt", "macros", "sync"] }
2023-01-27 19:56:44 +00:00
actix-multipart = "0.5.0"
2022-08-21 16:44:12 +00:00
futures-util = "0.3.24"
2022-04-23 22:37:20 +00:00
rand = "0.8.5"
time = "0.3.15"
htmlescape = "0.3.1"
2022-08-21 16:44:12 +00:00
urlencoding = "2.1.2"
2022-04-23 22:37:20 +00:00
tree_magic_mini = { version = "3.0.3", features = ["with-gpl-data"] }
tree_magic_db = "*"
2021-03-09 22:36:24 +00:00
mime = "0.3.16"
2022-08-21 16:44:12 +00:00
url = "2.3.1"
2023-01-27 19:56:44 +00:00
actix-governor = "0.4.0"
governor = "0.5.1"
lazy_static = "1.4.0"
2022-10-08 10:42:20 +00:00
[profile.release]
strip = "symbols"
lto = true
codegen-units = 1