-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (36 loc) · 1.3 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
[package]
name = "openring"
version = "0.3.6"
edition = "2021"
authors = ["Luke Hsiao <[email protected]>"]
description = "A webring for static site generators written in Rust"
repository = "https://github.com/lukehsiao/openring-rs"
homepage = "https://github.com/lukehsiao/openring-rs"
license = "BlueOak-1.0.0"
keywords = ["webring"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ammonia = "4.0.0"
clap = { version = "4.5.21", features = ["derive", "wrap_help", "cargo"] }
clap-verbosity-flag = "3.0.1"
csv = "1.3.1"
dashmap = "6.1.0"
feed-rs = "2.2.0"
html-escape = "0.2.13"
humantime = "2.1.0"
indicatif = "0.17.9"
jiff = { version = "0.1.15", features = ["serde"] }
log = "0.4.22"
miette = { version = "7.4.0", features = ["fancy"] }
reqwest = { version = "0.12.9", features = ["gzip", "brotli", "zstd", "deflate"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tera = "1.20.0"
thiserror = "2.0.3"
tokio = { version = "1.41.1", features = ["full"] }
tracing = "0.1.41"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
url = { version = "2.5.4", features = ["serde"] }
yansi = { version = "1.0.1", features = ["detect-tty", "detect-env"] }