Add a configuration file + crypto module interface
[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 = "1.0.0"
9 actix-files = "0.1.1"
10 askama = "0.8" # Template system
11 serde = { version = "1.0", features = ["derive"] }
12
13 openssl = "0.10"
14
15 listenfd = "0.3" # To watch file modifications and automatically launch a build process (only used in dev/debug).
16 ron = "0.5.1" # Rust object notation, to load configuration files.