rss 2.0.13

Library for serializing the RSS web content syndication format
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "rss"
version = "2.0.13"
authors = [
    "James Hurst <jh.jameshurst@gmail.com>",
    "Corey Farwell <coreyf@rwell.org>",
    "Chris Palmer <pennstate5013@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for serializing the RSS web content syndication format"
documentation = "https://docs.rs/rss/"
readme = "README.md"
keywords = [
    "rss",
    "feed",
    "parser",
    "parsing",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-syndication/rss"

[package.metadata.docs.rs]
all-features = false

[features]
atom = ["atom_syndication"]
builders = [
    "derive_builder",
    "atom_syndication/builders",
]
default = ["builders"]
validation = [
    "chrono",
    "chrono/std",
    "url",
    "mime",
]
with-serde = [
    "serde",
    "atom_syndication/with-serde",
]

[lib]
name = "rss"
path = "src/lib.rs"

[[test]]
name = "read"
path = "tests/read.rs"

[[test]]
name = "write"
path = "tests/write.rs"

[[bench]]
name = "read"
path = "benches/read.rs"
harness = false

[[bench]]
name = "write"
path = "benches/write.rs"
harness = false

[dependencies.atom_syndication]
version = "0.12.8"
optional = true

[dependencies.chrono]
version = "0.4.31"
features = ["alloc"]
optional = true
default-features = false

[dependencies.derive_builder]
version = "0.20"
optional = true

[dependencies.mime]
version = "0.3"
optional = true

[dependencies.quick-xml]
version = "0.39"
features = ["encoding"]

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.url]
version = "2.1"
optional = true

[dev-dependencies.bencher]
version = "0.1"