-
Notifications
You must be signed in to change notification settings - Fork 52
/
Cargo.toml
45 lines (39 loc) · 1.44 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "rss"
version = "2.0.9"
authors = ["James Hurst <[email protected]>", "Corey Farwell <[email protected]>", "Chris Palmer <[email protected]>"]
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.36", 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