2020-08-28 11:37:29 +00:00
|
|
|
# https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "opml_cli"
|
|
|
|
description = "An OPML parser for the command-line."
|
2021-07-05 21:05:05 +00:00
|
|
|
version = "1.1.1"
|
2020-08-28 11:37:29 +00:00
|
|
|
authors = ["Holllo <helllo@holllo.cc>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/Holllo/opml"
|
|
|
|
readme = "../README.md"
|
|
|
|
edition = "2018"
|
|
|
|
keywords = ["xml", "opml"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "opml"
|
|
|
|
path = "source/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = "2.33"
|
2021-07-05 21:05:05 +00:00
|
|
|
opml = { path = "../opml_api", version = "1.1.1" }
|
2020-08-28 11:37:29 +00:00
|
|
|
serde_json = "1.0"
|
|
|
|
|
|
|
|
[dependencies.serde]
|
|
|
|
version = "1.0"
|
|
|
|
features = ["derive"]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_cmd = "1.0"
|