-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 861 Bytes
/
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
[package]
name = "rss-actions"
version = "0.3.0"
authors = ["Harry Stern <harry@harrystern.net>"]
edition = "2021"
description = "Run scripts automatically on rss feed updates."
repository = "https://github.com/boustrophedon/rss-actions"
license = "AGPL-3.0"
keywords = ["rss", "cli", "utility"]
categories = ["command-line-utilities"]
[[bin]]
name = "rss-actions"
path = "src/main.rs"
[dependencies]
anyhow = "^1"
bytes = "^1"
chrono = "0.4"
directories = "^3"
reqwest = {version = "^0.12", features = ["blocking"] }
rss = "^2"
rusqlite = { version = "^0.31", features = ["url", "chrono", "bundled"] }
serde = { version = "^1", features = ["derive"] }
serde_derive = "^1"
structopt = "0.3"
toml = "0.8"
url = "^2"
[dev-dependencies]
tempfile = "^3"
# used to serve rss files in integration tests
tokio = { version = "1", features = ["full"] }
warp = "0.3"