File: Cargo.toml.orig

package info (click to toggle)
rust-rxml 0.13.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 800 kB
  • sloc: makefile: 2
file content (59 lines) | stat: -rw-r--r-- 1,716 bytes parent folder | download
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "rxml"
version = "0.13.3"
authors = ["Jonas Schäfer <jonas@zombofant.net>"]
license = "MIT"
edition = "2021"
description = "Minimalistic, restricted XML 1.0 parser which does not include dangerous XML features."
readme = true
repository = "https://codeberg.org/jssfr/rxml"
keywords = ["xml"]
categories = ["parsing"]
exclude = ["/fuzz", "/util", "/target"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
weak-table = { version = "^0.3", optional = true }
rxml_validation = { version = "^0.11.0" }
tokio = { version = "^1", default-features = false, optional = true }
bytes = { version = "^1" }
rxml_proc = { version = "^0.12.1", optional = true }
pin-project-lite = { version = "^0.2", optional = true }
futures-core = { version = "^0.3", optional = true, default-features = false, features = ["alloc"] }

[features]
std = ["futures-core/std"]
sync = []
shared_ns = ["weak-table", "std"]
default = ["std", "tokio", "compact_str"]
tokio = ["dep:tokio", "dep:pin-project-lite", "std"]
macros = ["rxml_proc"]
stream = ["tokio", "futures-core"]
compact_str = ["rxml_validation/compact_str"]

[dev-dependencies]
# net is needed because docs don't build on tokio 1.38 otherwise
tokio = { version = "^1", features = ["rt", "macros", "io-util", "net"], default-features = false }
tokio-test = { version = "^0.4" }
criterion = { version = "^0.5", features = ["html_reports"] }

[[bench]]
name = "parse"
harness = false

[[bench]]
name = "q"
harness = false

[[bench]]
name = "escaping"
harness = false

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[example]]
name = "pipe"
required-features = ["std"]