Beginning of frontend + recipe editing
[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
13 chrono = "0.4"
14
15 ron = "0.8" # Rust object notation, to load configuration files.
16 serde = {version = "1.0", features = ["derive"]}
17
18 itertools = "0.10"
19 clap = {version = "4", features = ["derive"]}
20
21 log = "0.4"
22 env_logger = "0.9"
23
24 r2d2_sqlite = "0.21" # Connection pool with rusqlite (SQLite access).
25 r2d2 = "0.8"
26 rusqlite = {version = "0.28", features = ["bundled", "chrono"]}
27
28 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.
29
30 askama = {version = "0.11", features = ["with-actix-web", "mime", "mime_guess", "markdown"]}
31 askama_actix = "0.13"
32
33 argon2 = {version = "0.4", features = ["default", "std"]}
34 rand_core = {version = "0.6", features = ["std"]}
35
36 rand = "0.8"
37
38 lettre = {version = "0.10", default-features = false, features = ["smtp-transport", "pool", "hostname", "builder", "rustls-tls"]}
39
40 derive_more = "0.99"