opml/opml_cli/Cargo.toml

35 lines
643 B
TOML
Raw Normal View History

# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "opml_cli"
description = "OPML for the command-line."
2022-07-20 12:25:56 +00:00
version = "1.1.4"
authors = ["Holllo <helllo@holllo.cc>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Holllo/opml"
readme = "../README.md"
edition = "2021"
keywords = ["xml", "opml"]
[[bin]]
name = "opml"
path = "source/main.rs"
[dependencies]
serde_json = "1.0.85"
[dependencies.clap]
version = "4.0.7"
features = ["derive"]
2021-09-26 20:21:24 +00:00
[dependencies.opml]
path = "../opml_api"
2022-07-20 12:25:56 +00:00
version = "1.1.4"
[dependencies.serde]
version = "1.0.145"
features = ["derive"]
[dev-dependencies]
assert_cmd = "2.0.4"