[package] name = "rss" version = "2.0.11" authors = ["James Hurst ", "Corey Farwell ", "Chris Palmer "] description = "Library for serializing the RSS web content syndication format" repository = "https://github.com/rust-syndication/rss" documentation = "https://docs.rs/rss/" license = "MIT/Apache-2.0" readme = "README.md" keywords = ["rss", "feed", "parser", "parsing"] include = ["src/*", "Cargo.toml", "LICENSE-MIT", "LICENSE-APACHE", "README.md"] edition = "2021" [package.metadata.docs.rs] all-features = false [features] default = ["builders"] atom = ["atom_syndication"] builders = ["derive_builder", "never", "atom_syndication/builders"] validation = ["chrono", "chrono/std", "url", "mime"] with-serde = ["serde", "atom_syndication/with-serde"] [dependencies] quick-xml = { version = "0.37.1", features = ["encoding"] } atom_syndication = { version = "0.12", optional = true } chrono = { version = "0.4.31", optional = true, default-features = false, features = ["alloc"] } derive_builder = { version = "0.20", optional = true } mime = { version = "0.3", optional = true } never = { version = "0.1", optional = true } serde = { version = "1.0", optional = true, features = ["derive"] } url = { version = "2.1", optional = true } [dev-dependencies] bencher = "0.1" [[bench]] name = "read" path = "benches/read.rs" harness = false [[bench]] name = "write" path = "benches/write.rs" harness = false