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