Update dependencies
[rup.git] / Cargo.toml
1 [package]
2 name = "rup"
3 version = "1.0.0"
4 authors = ["GrĂ©gory Burri <greg.burri@gmail.com>"]
5 edition = "2018"
6
7 [dependencies]
8 actix-web = "2.0"
9 actix-rt = "1.1"
10 actix-files = "0.2"
11 askama = "0.10" # Template system
12 serde = { version = "1.0", features = ["derive"] }
13
14 openssl = "0.10"
15
16 listenfd = "0.3" # To watch file modifications and automatically launch a build process (only used in dev/debug).
17 ron = "0.6" # Rust object notation, to load configuration files.
18 itertools = "0.9"
19 percent-encoding = "2.1"
20 base64 = "0.12"
21 rand = "0.7"
22
23 [profile.release]
24 codegen-units = 1
25 lto = true
26 panic = 'abort'