-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (45 loc) · 1.15 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
[package]
name = "katharsis"
authors = ["Shigure Kurosaki <[email protected]>"]
version = "1.0.0-canary.29"
edition = "2021"
rust-version = "1.78.0"
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["rss", "feed", "generator", "cli", "tool"]
repository = "https://github.com/arghena/katharsis"
homepage = "https://github.com/arghena/katharsis"
documentation = "https://docs.rs/katharsis"
description = "CLI tool for generating RSS feeds."
include = ["/src/", "/LICENSE"]
[lints.clippy]
pedantic = "warn"
[[bin]]
name = "katharsis"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
anyhow = "1.0.95"
chrono = "0.4.39"
clap = { version = "4.5.27", features = ["derive", "env"] }
glob = "0.3.2"
inquire = "0.7.5"
rss = "2.0.11"
scraper = "0.22.0"
serde = { version = "1.0.217", features = ["derive"] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = [
"fs",
"io-util",
"macros",
"rt-multi-thread",
] }
toml = "0.8.19"
url = { version = "2.5.4", features = ["serde"] }
[dev-dependencies]
tokio-test = "0.4.4"