1
Fork 0
steam-rss/Cargo.toml

32 lines
579 B
TOML
Raw Normal View History

2022-09-21 13:48:49 +00:00
[package]
name = "steam-rss"
description = "Get RSS feeds for Steam games."
2024-03-01 13:31:06 +00:00
repository = "https://github.com/Bauke/steam-rss"
2022-09-21 13:48:49 +00:00
license = "AGPL-3.0-or-later"
2022-09-23 12:33:41 +00:00
version = "0.2.2"
2022-09-21 13:48:49 +00:00
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
[[bin]]
name = "steam-rss"
path = "source/main.rs"
2024-01-26 18:59:25 +00:00
[lints.clippy]
missing_docs_in_private_items = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
2022-09-21 13:48:49 +00:00
[dependencies]
color-eyre = "0.6.2"
2024-01-26 18:59:01 +00:00
opml = "1.1.6"
regex = "1.10.3"
serde = "1.0.195"
serde_json = "1.0.111"
ureq = "2.9.1"
2022-09-21 13:48:49 +00:00
[dependencies.clap]
features = ["derive"]
2024-01-26 18:59:01 +00:00
version = "4.4.18"