2020-05-23 12:32:40 +00:00
|
|
|
# https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "opml"
|
|
|
|
authors = ["Holllo <helllo@holllo.cc>"]
|
2020-05-23 16:21:21 +00:00
|
|
|
version = "0.1.1"
|
2020-05-23 12:32:40 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
description = "An OPML 2.0 parser for Rust."
|
|
|
|
repository = "https://gitlab.com/holllo/opml-rs"
|
|
|
|
readme = "ReadMe.md"
|
|
|
|
edition = "2018"
|
|
|
|
keywords = ["xml", "opml"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "source/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
regex = "1.3.7"
|
|
|
|
strong-xml = "0.6.0"
|