Complete Cargo.toml for now
This commit is contained in:
parent
c167b9c053
commit
46c78b039a
14
Cargo.toml
14
Cargo.toml
|
@ -1,9 +1,19 @@
|
||||||
[package]
|
[package]
|
||||||
name = "weareone-xmltv"
|
name = "weareone-xmltv"
|
||||||
|
description = "An XMLTV grabber for WeAreOne.FM internet radio stations."
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
authors = ["Martin Wurm <cargo-weareone-xmltv@mart-w.de>"]
|
||||||
|
readme = "README.md"
|
||||||
|
repository = "https://codeberg.org/mart-w/weareone-xmltv"
|
||||||
|
license = "LGPL-3.0"
|
||||||
|
keywords = ["xmltv", "grabber", "scraper", "weareone", "technobase"]
|
||||||
|
categories = ["command-line-utilities", "api-bindings"]
|
||||||
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
[[bin]]
|
||||||
|
name = "tv_grab_de_weareone"
|
||||||
|
path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { features = ["derive"] }
|
clap = {version = "4", features = ["derive"] }
|
||||||
|
|
Loading…
Reference in a new issue