-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
47 lines (42 loc) · 1.22 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
[package]
name = "ringfairy"
version = "0.1.3"
edition = "2021"
authors = ["Kern AKA Kersed <human@kernespinoza.com>", "Shom Bandopadhaya <shom@bandopadhaya.com>"]
license = "GPL-3.0"
description = "Creates a webring by generating HTML files for a set of websites, linking them together."
readme = "README.md"
homepage = "https://github.com/k3rs3d/ringfairy"
repository = "https://github.com/k3rs3d/ringfairy"
documentation = "https://github.com/k3rs3d/ringfairy"
keywords = ["static-site", "webring", "smallweb", "indieweb"]
categories = ["command-line-utilities", "web-programming"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4"
clap = { version = "4.4", features = ["derive"] }
env_logger = "0.10"
futures = "0.3.30"
log = "0.4.20"
minify-html = "0.15"
rand = "0.8"
reqwest = "0.11.24"
scraper = "0.18.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tera = "1.19"
tokio = { version = "1", features = ["full"] }
url = "2.5"
opml = "1.1.6"
regex = "1.10.4"
lazy_static = "1.4.0"
toml = "0.8.13"
thiserror = "1.0.63"
[profile.release]
lto = true
opt-level = 3
strip = true
debug = false
panic = "abort"
[dev-dependencies]
mockito = "1.4.0"