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 = "1.0"
9 actix-files = "0.1"
10 askama = "0.8" # Template system
11 serde = { version = "1.0", features = ["derive"] }
12 listenfd = "0.3" # To watch file modifications and automatically launch a build process (only used in dev/debug).
13 ron = "0.5" # Rust object notation, to load configuration files.
14 itertools = "0.8"
15 env_logger = "0.6"
16
17 common = { path = "../common" }
18
19 [dependencies.rusqlite]
20 version = "0.20"
21 features = ["bundled"]