Update dependencies
[recipes.git] / backend / Cargo.toml
1 [package]
2 name = "recipes"
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 listenfd = "0.3" # To watch file modifications and automatically launch a build process (only used in dev/debug).
14 ron = "0.5" # Rust object notation, to load configuration files.
15 itertools = "0.8"
16 env_logger = "0.7"
17
18 common = { path = "../common" }
19
20 [dependencies.rusqlite]
21 version = "0.21"
22 features = ["bundled"]