opml/opml_api/Cargo.toml

25 lines
494 B
TOML
Raw Normal View History

# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "opml"
description = "An OPML parser for Rust."
authors = ["Holllo <helllo@holllo.cc>"]
2021-07-05 21:05:05 +00:00
version = "1.1.1"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Holllo/opml"
readme = "../README.md"
edition = "2018"
keywords = ["xml", "opml"]
[lib]
path = "source/lib.rs"
[dependencies]
2021-09-26 20:21:24 +00:00
regex = "1.5.4"
strong-xml = "0.6.3"
thiserror = "1.0.29"
[dependencies.serde]
version = "1.0.130"
features = ["derive"]