opml/opml_api/Cargo.toml

24 lines
479 B
TOML
Raw Normal View History

# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "opml"
2022-09-30 23:06:29 +00:00
description = "OPML library for Rust."
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>"]
2022-09-30 23:03:47 +00:00
edition = "2021"
2022-09-30 23:06:29 +00:00
readme = "../README.md"
keywords = ["xml", "opml"]
[lib]
path = "source/lib.rs"
[dependencies]
2024-01-21 12:45:48 +00:00
hard-xml = "1.34.0"
thiserror = "1.0.56"
2021-09-26 20:21:24 +00:00
[dependencies.serde]
2024-01-21 12:45:48 +00:00
version = "1.0.195"
2021-09-26 20:21:24 +00:00
features = ["derive"]