Add an error management in db module
[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"
9 actix-rt = "1"
10 actix-files = "0.2"
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.6" # Rust object notation, to load configuration files.
14 itertools = "0.9"
15
16 r2d2_sqlite = "0.16" # Connection pool with rusqlite (SQLite access).
17 r2d2 = "0.8"
18
19 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.
20
21 common = { path = "../common" }
22
23 [dependencies.rusqlite]
24 version = "0.23"
25 features = ["bundled"]
26
27 # Template system.
28 [dependencies.askama]
29 version = "0.9"
30 features = ["with-actix-web"]