-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (39 loc) · 1.05 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
[package]
name = "website"
version = "0.1.0"
authors = ["Grégoire Charvet 黑瓜 <[email protected]>"]
edition = "2021"
[dependencies]
atom_syndication = "0.11.0"
axum = { version = "0.6", features = ["ws"] }
chrono = "0.4.22"
futures = "0.3.24"
hyper = { version = "0.14.18", features = ["full"] }
itertools = "0.10.3"
liquid = "0.26.0"
nom = "7.1.1"
notify = { version = "4.0.17", default-features = false }
parking_lot = "0.12.1"
pulldown-cmark = "0.9.1"
rayon = "1.5.3"
serde = { version = "1.0.144", features = ["derive"] }
serde_yaml = "0.9.13"
syntect = "5.0.0"
tera = "1.17.0"
thiserror = "1.0.32"
time = "0.3.17"
tokio = { version = "1.18.1", features = ["full"] }
tokio-stream = "0.1.10"
tower = "0.4.12"
tower-http = { version="0.4.0", features = ["trace", "fs"] }
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
tracing-tree = "0.2.0"
[[bin]]
name = "geekingfrog"
path = "src/bin/geekingfrog.rs"
[[bin]]
name = "testingfrog"
path = "src/bin/testingfrog.rs"
[dev-dependencies]
pretty_assertions = "1.3.0"