-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.03 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
[package]
authors = ["Mikkel Kroman <[email protected]>"]
edition = "2021"
name = "rss-watch"
version = "0.2.0"
license = "BSD-2-Clause"
keywords = ["rss", "atom", "monitor", "watch"]
homepage = "https://github.com/mkroman/rss-watch"
repository = "https://github.com/mkroman/rss-watch"
description = "rss-watch is a command-line rss/atom feed watching utillity."
[dependencies]
atom_syndication = { version = "0.12", features = ["with-serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
directories = "5.0.1"
humantime = "2.1"
miette = { version = "7.2.0", features = ["fancy"] }
refinery = { version = "0.8.13", features = ["rusqlite"] }
reqwest = { version = "0.12", features = ["blocking"] }
rss = "2.0"
rusqlite = "0.31"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", optional = true }
thiserror = "1.0.58"
tracing = "0.1"
tracing-subscriber = "0.3"
url = "2.5.0"
[features]
default = ["json"]
json = ["serde_json"]
[profile.release]
lto = "fat"
codegen-units = 1
strip = "debuginfo"
panic = "abort"