forked from tafia/quick-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (29 loc) · 833 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
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "quick-xml"
version = "0.22.0"
authors = ["Johann Tuffe <[email protected]>"]
description = "High performance xml reader and writer"
documentation = "https://docs.rs/quick-xml"
repository = "https://github.com/tafia/quick-xml"
keywords = ["xml", "reader", "parser", "writer", "html"]
categories = ["encoding", "parsing", "text-processing"]
license = "MIT"
[badges]
travis-ci = { repository = "tafia/quick-xml" }
[dependencies]
encoding_rs = { version = "0.8.26", optional = true }
serde = { version = "1.0", optional = true }
memchr = "2.3.4"
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde-value = "0.7"
regex = "1"
[lib]
bench = false
[features]
default = []
encoding = ["encoding_rs"]
serialize = ["serde"]
escape-html = []
[package.metadata.docs.rs]
features = ["serialize"]