[package]
edition = "2021"
rust-version = "1.83"
name = "atom_syndication"
version = "0.12.8"
authors = ["James Hurst <jh.jameshurst@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for serializing the Atom web content syndication format"
documentation = "https://docs.rs/atom_syndication/"
readme = "README.md"
keywords = [
"atom",
"feed",
"parser",
"parsing",
]
categories = ["parser-implementations"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-syndication/atom"
[features]
builders = ["derive_builder"]
default = ["builders"]
with-serde = [
"serde",
"chrono/serde",
]
[lib]
name = "atom_syndication"
path = "src/lib.rs"
[[test]]
name = "builders"
path = "tests/builders.rs"
[[test]]
name = "content"
path = "tests/content.rs"
[[test]]
name = "read"
path = "tests/read.rs"
[[test]]
name = "text"
path = "tests/text.rs"
[[test]]
name = "write"
path = "tests/write.rs"
[dependencies.chrono]
version = "0.4"
features = ["alloc"]
default-features = false
[dependencies.derive_builder]
version = "0.20"
optional = true
[dependencies.diligent-date-parser]
version = "0.1.3"
[dependencies.quick-xml]
version = "0.39"
features = ["encoding"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true