-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 1.1 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
[package]
name = "katharsis"
authors = ["Shigure Kurosaki <[email protected]>"]
version = "1.0.0-canary.27"
edition = "2021"
rust-version = "1.78.0"
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["rss", "feed", "generator", "cli", "tool"]
repository = "https://github.com/kurosakishigure/katharsis"
homepage = "https://github.com/kurosakishigure/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)'] }
[dependencies]
anyhow = "1.0.95"
chrono = "0.4.39"
clap = { version = "4.5.24", 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.9"
tokio = { version = "1.42.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"
tempfile = "3.15.0"