dfff361ce503da452c17a1d0a10824799f5f8c74
[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 log = "0.4"
21 env_logger = "0.9"
22
23 r2d2_sqlite = "0.21" # Connection pool with rusqlite (SQLite access).
24 r2d2 = "0.8"
25 rusqlite = {version = "0.28", features = ["bundled", "chrono"]}
26
27 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.
28
29 askama = {version = "0.11", features = ["with-actix-web", "mime", "mime_guess", "markdown"]}
30 askama_actix = "0.13"
31
32 argon2 = {version = "0.4", features = ["default", "std"]}
33 rand_core = {version = "0.6", features = ["std"]}
34
35 rand = "0.8"
36
37 lettre = {version = "0.10", default-features = false, features = ["smtp-transport", "pool", "hostname", "builder", "rustls-tls"]}