44 lines
1017 B
TOML
44 lines
1017 B
TOML
[package]
|
|
name = "datatrash"
|
|
version = "2.0.3"
|
|
authors = ["neri"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = { version = "4.2.1", default-features = false, features = [
|
|
"macros",
|
|
"compress-gzip",
|
|
"compress-zstd",
|
|
] }
|
|
sqlx = { version = "0.6.2", default-features = false, features = [
|
|
"runtime-tokio-rustls",
|
|
"postgres",
|
|
"time",
|
|
] }
|
|
env_logger = { version = "0.9.1", default-features = false, features = [
|
|
"humantime",
|
|
] }
|
|
log = "0.4.17"
|
|
actix-files = "0.6.2"
|
|
tokio = { version = "1.21.2", features = ["rt", "macros", "sync"] }
|
|
actix-multipart = "0.4.0"
|
|
futures-util = "0.3.24"
|
|
rand = "0.8.5"
|
|
time = "0.3.15"
|
|
htmlescape = "0.3.1"
|
|
urlencoding = "2.1.2"
|
|
tree_magic_mini = { version = "3.0.3", features = ["with-gpl-data"] }
|
|
tree_magic_db = "*"
|
|
mime = "0.3.16"
|
|
url = "2.3.1"
|
|
actix-governor = "0.3.2"
|
|
governor = "0.4.2"
|
|
lazy_static = "1.4.0"
|
|
|
|
[profile.release]
|
|
strip = "symbols"
|
|
lto = true
|
|
codegen-units = 1
|