[package] name = "rss-for-mikan" version = "2.0.4-mikan" authors = [ "James Hurst ", "Corey Farwell ", "Chris Palmer ", "RinChanNOWWW ", ] description = "A modified rust-syndication/rss for Mikan Project" repository = "https://github.com/RinChanNOWWW/rss-for-mikan" 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"] builders = ["derive_builder", "never", "atom_syndication/builders"] validation = ["chrono", "chrono/std", "url", "mime"] with-serde = ["serde", "atom_syndication/with-serde"] atom = ["atom_syndication"] [dependencies] quick-xml = { version = "0.28", features = ["encoding"] } derive_builder = { version = "0.12", optional = true } never = { version = "0.1", optional = true } chrono = { version = "0.4", optional = true, default-features = false, features = [ "alloc", ] } url = { version = "2.1", optional = true } mime = { version = "0.3", optional = true } serde = { version = "1.0", optional = true, features = ["derive"] } atom_syndication = { version = "0.12", 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