-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
26 lines (24 loc) · 992 Bytes
/
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
[package]
name = "atom_syndication"
version = "0.12.6"
authors = ["James Hurst <[email protected]>"]
edition = "2021"
description = "Library for serializing the Atom web content syndication format"
repository = "https://github.com/rust-syndication/atom"
documentation = "https://docs.rs/atom_syndication/"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["atom", "feed", "parser", "parsing"]
categories = ["parser-implementations"]
include = ["src/*", "Cargo.toml", "LICENSE-MIT", "LICENSE-APACHE", "README.md"]
[dependencies]
diligent-date-parser = "0.1.3"
quick-xml = { version = "0.37", features = ["encoding"] }
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
derive_builder = { version = "0.20", optional = true }
never = { version = "0.1", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
[features]
default = ["builders"]
builders = ["derive_builder", "never"]
with-serde = ["serde", "chrono/serde"]