-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 822 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "filedrop-v2"
version = "1.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
#opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*
[dependencies]
rocket = { version = "0.5.0-rc.2" }
tera = { version = "1", default-features = true}
rocket_dyn_templates = {version = "0.1.0-rc.2", features = ["tera"]}
rocket-include-static-resources = "0.10.2"
fsio = "0.4.0"
dotenv = "0.15.0"
mime_guess = "2.0.4"
serde = "1.0.145"
chrono = "0.4"
#FOLDER SUPPORT
zip = { version = "0.6.3"}
tempfile = "3.3.0"
walkdir = "2.3.2"