forked from KWARC/rust-libxml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (31 loc) · 923 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
38
[package]
name = "libxml"
version = "0.3.3"
edition = "2021"
authors = ["Andreas Franzén <[email protected]>", "Deyan Ginev <[email protected]>","Jan Frederik Schaefer <[email protected]>"]
description = "A Rust wrapper for libxml2 - the XML C parser and toolkit developed for the Gnome project"
repository = "https://github.com/KWARC/rust-libxml"
documentation = "https://kwarc.github.io/rust-libxml/libxml/index.html"
readme = "README.md"
license = "MIT"
keywords = ["xml", "libxml","xpath", "parser", "html"]
build = "build.rs"
exclude = [
"scripts/*"
]
[lib]
name = "libxml"
[dependencies]
libc = "0.2"
[target.'cfg(windows)'.build-dependencies]
vcpkg = "0.2"
[target.'cfg(macos)'.build-dependencies]
pkg-config = "0.3.2"
[target.'cfg(unix)'.build-dependencies]
pkg-config = "0.3.2"
[dev-dependencies]
rayon = "1.0.0"
criterion = "0.5.1"
[[bench]]
name = "parsing_benchmarks"
harness = false