-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·64 lines (62 loc) · 2.34 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "recipya-rs"
version = "0.1.0"
edition = "2024"
description = "A clean, simple and powerful recipe manager your whole family will enjoy."
readme = "README.md"
homepage = "https://recipya.musicavis.ca"
repository = "https://github.com/reaper47/recipya-rs"
license = "AGPL-3.0-or-later"
keywords = ["food", "recipes", "recipe-manager"]
categories = ["web-programming"]
build = "build.rs"
[dependencies]
argon2 = { version = "0.5.3", features = ["std"] }
async-trait = "0.1.87"
axum = { version = "0.8.1", features = ["ws"] }
axum-htmx = "0.7.0"
base64 = "0.22.1"
clap = { version = "4.5.31", features = ["derive"] }
derive_more = { version = "2.0.1", features = ["from", "display"] }
diesel = { version = "2.2.7", features = ["postgres", "chrono", "serde_json", "uuid"] }
diesel-async = { version = "0.5.2", features = ["postgres", "bb8", "async-connection-wrapper"] }
diesel_migrations = { version = "2.2", features = ["postgres"] }
directories = "6.0.0"
dotenvy = "0.15.7"
enum_dispatch = "0.3.13"
futures-util = "0.3.31"
hmac = "0.12.1"
humantime = "2.1.0"
iso8601 = { version = "0.6.2", features = ["serde"] }
iso8601-duration = "0.2.0"
lazy-regex = "3.4.1"
lettre = { version = "0.11.14", default-features = false, features = ["smtp-transport", "pool", "rustls-tls", "hostname", "builder"] }
maud = { version = "0.27.0", features = ["axum"] }
mime_guess = "2.0.5"
mrml = "5.0.0"
native-tls = "0.2.14"
paste = "1.0.15"
postgres-native-tls = "0.5.1"
reqwest = { version = "0.12.12", features = ["blocking"] }
rust-embed = { version = "8.6.0", features = ["axum-ex"] }
scraper = "0.23.1"
sendgrid = { version = "0.23.0", features = ["rustls"] }
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.140"
sha2 = "0.10.8"
strum_macros = "0.27.1"
time = "0.3.38"
tokio = { version = "1.43", features = ["full"] }
tokio-postgres = { version = "0.7.13", features = ["with-serde_json-1", "with-time-0_3", "with-uuid-1"] }
tower-cookies = "0.11.0"
tower-http = { version = "0.6.2", features = ["fs"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
url = { version = "2.5.4", features = ["serde"] }
uuid = { version = "1.15.1", features = ["fast-rng", "serde", "v4"] }
validator = { version = "0.20.0", features = ["derive"] }
whatlang = "0.16.4"
[dev-dependencies]
axum-test = { version = "17.2.0", features = ["ws"] }
pretty_assertions = "1.4.1"
tower = "0.5.2"