7af3811dbd7f95097f2c6c86293c1eba38a4888d
[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 = "2021"
6
7 [dependencies]
8 actix-web = "4"
9 actix-files = "0.6"
10 serde = { version = "1.0", features = [ "derive" ] }
11
12 ron = "0.8" # Rust object notation, to load configuration files.
13 itertools = "0.10"
14
15 env_logger = "0.9"
16
17 r2d2_sqlite = "0.21" # Connection pool with rusqlite (SQLite access).
18 r2d2 = "0.8"
19
20 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.
21
22 common = { path = "../common" }
23
24 askama = { version = "0.11", features = ["with-actix-web", "mime", "mime_guess"] }
25 askama_actix = "0.13"
26
27 rusqlite = { version = "0.28", features = ["bundled"] }