-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
67 lines (58 loc) · 1.18 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
65
66
67
[package]
name = "shoelace"
version = "0.3.0-alpha"
edition = "2021"
authors = ["Lux Aliaga <lux@nixgoat.me>"]
repository = "https://git.sr.ht/~nixgoat/shoelace"
license = "AGPL-3.0-or-later"
build = "build.rs"
[dependencies]
anyhow = "1.0"
askama = "0.12"
askama_axum = "0.4"
axum = "0.7"
axum-test = "15"
axum-xml-up = "0.2"
base64 = "0.22"
blake3 = "1.5"
chrono = "0.4"
config = "0.14"
futures = "0.3.30"
git-version = "0.3"
infer = "0.16"
lazy_static = "1.4"
linkify = "0.9"
millisecond = "0.2"
reqwest = "0.12"
rss = "2.0"
serde_json = "1.0"
static-files = "0.2.1"
thiserror = "1.0"
tower-serve-static = "0.1"
tracing = "0.1"
tracing-appender = "0.2"
tracing-log = "0.2"
numfmt = "1.1"
regex = "1.10.6"
[build-dependencies]
static-files = "0.2.1"
[dependencies.axum-server]
version = "0.7"
features = ["tls-rustls"]
[dependencies.include_dir]
version = "0.7"
features = ["glob"]
[dependencies.redis]
version = "*"
features = ["tokio-comp"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.spools]
git = "https://git.sr.ht/~nixgoat/spools"
[dependencies.tokio]
version = "1.37.0"
features = ["full"]
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]