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