2020-08-28 11:37:29 +00:00
|
|
|
# https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "opml_cli"
|
2022-09-30 22:06:15 +00:00
|
|
|
description = "OPML for the command-line."
|
2022-09-30 23:06:29 +00:00
|
|
|
repository = "https://git.bauke.xyz/Holllo/opml"
|
2020-08-28 11:37:29 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-10-02 20:10:29 +00:00
|
|
|
version = "1.1.5"
|
2022-09-30 23:06:29 +00:00
|
|
|
authors = ["Holllo <helllo@holllo.org>"]
|
2022-09-30 22:06:15 +00:00
|
|
|
edition = "2021"
|
2022-09-30 23:06:29 +00:00
|
|
|
readme = "../README.md"
|
2020-08-28 11:37:29 +00:00
|
|
|
keywords = ["xml", "opml"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "opml"
|
|
|
|
path = "source/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-21 12:45:48 +00:00
|
|
|
serde_json = "1.0.111"
|
2022-09-30 22:06:15 +00:00
|
|
|
|
|
|
|
[dependencies.clap]
|
2024-01-21 12:45:48 +00:00
|
|
|
version = "4.4.18"
|
2022-09-30 22:06:15 +00:00
|
|
|
features = ["derive"]
|
2021-09-26 20:21:24 +00:00
|
|
|
|
|
|
|
[dependencies.opml]
|
|
|
|
path = "../opml_api"
|
2022-10-02 20:10:29 +00:00
|
|
|
version = "1.1.5"
|
2020-08-28 11:37:29 +00:00
|
|
|
|
|
|
|
[dependencies.serde]
|
2024-01-21 12:45:48 +00:00
|
|
|
version = "1.0.195"
|
2020-08-28 11:37:29 +00:00
|
|
|
features = ["derive"]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-21 12:45:48 +00:00
|
|
|
assert_cmd = "2.0.13"
|
|
|
|
insta = "1.34.0"
|
|
|
|
test-case = "3.3.1"
|