-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
62 lines (56 loc) · 1.59 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
[package]
name = "wwwtech_rs"
version = "2024.11.1-1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7", features = [
"http2",
"multipart",
"tracing",
"macros",
] }
axum-extra = "0.9"
tower-http = { version = "0.6.1", features = ["fs", "trace"] }
chrono = { version = "0.4.38", features = ["serde"] }
dotenvy = "0.15.7"
serde = { version = "1.0.215", features = ["derive"] }
tokio = { version = "1.41", features = ["full"] }
tokio-util = { version = "0.7.12", features = ["tracing", "io"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
validator = { version = "0.19", features = ["derive"] }
image = "0.25"
kamadak-exif = "0.6"
anyhow = { version = "1.0.93", features = ["backtrace"] }
askama = { version = "0.12", features = ["with-axum"] }
askama_axum = "0.4.0"
atom_syndication = "0.12"
pulldown-cmark = { version = "0.12", default-features = false, features = [
"html",
] }
regex = "1"
axum-login = "0.16.0"
async-trait = "0.1"
eyre = "0.6"
argon2 = "0.5"
new_mime_guess = "4.0"
# webmentions
url = "2.5"
reqwest = { version = "0.12", features = ["blocking"] }
visdom = "1.0"
itertools = "0.13"
urlencoding = "2.1"
lettre = "0.11.10"
axum_typed_multipart = "0.13"
tempfile = "3.14"
tower = "0.5.1"
moka = { version = "0.12.8", features = ["future"] }
[dependencies.mastodon-async]
version = "1.3"
features = ["toml"]
[dependencies.sqlx]
version = "0.8"
features = ["runtime-tokio", "tls-native-tls", "postgres", "json", "chrono"]
[build-dependencies]
askama = "0.12"