opml/opml_cli/Cargo.toml

37 lines
687 B
TOML
Raw Permalink Normal View History

# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "opml_cli"
description = "OPML for the command-line."
2022-09-30 23:06:29 +00:00
repository = "https://git.bauke.xyz/Holllo/opml"
license = "MIT OR Apache-2.0"
2024-01-21 12:59:35 +00:00
version = "1.1.6"
2022-09-30 23:06:29 +00:00
authors = ["Holllo <helllo@holllo.org>"]
edition = "2021"
2022-09-30 23:06:29 +00:00
readme = "../README.md"
keywords = ["xml", "opml"]
[[bin]]
name = "opml"
path = "source/main.rs"
[dependencies]
2024-01-21 12:45:48 +00:00
serde_json = "1.0.111"
[dependencies.clap]
2024-01-21 12:45:48 +00:00
version = "4.4.18"
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"
[dependencies.serde]
2024-01-21 12:45:48 +00:00
version = "1.0.195"
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"