Merge branch 'master' of euphorik.ch:rup into master
[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.0"
10 actix-files = "0.2"
11 askama = "0.9" # 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.5" # Rust object notation, to load configuration files.
18 itertools = "0.8"
19 #url = "2.1"
20 percent-encoding = "2.1"
21 base64 = "0.11"
22 rand = "0.7"
23
24 [profile.release]
25 codegen-units = 1
26 lto = true