-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Cargo.toml
34 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
[package]
name = "xml-rs"
version = "0.8.20"
authors = ["Vladimir Matveev <[email protected]>"]
license = "MIT"
description = "An XML library in pure Rust"
repository = "https://github.com/kornelski/xml-rs"
homepage = "https://lib.rs/crates/xml-rs"
documentation = "https://docs.rs/xml-rs/"
readme = "README.md"
keywords = ["xml", "parser", "sax", "parsing", "writer"]
categories = ["parser-implementations"]
edition = "2021"
rust-version = "1.58"
include = ["src/**", "LICENSE", "README.md"]
[lib]
name = "xml"
path = "src/lib.rs"
[[bin]]
name = "xml-analyze"
path = "src/analyze.rs"
[badges]
maintenance = { status = "actively-developed" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
[package.metadata.release]
tag-name = "{{version}}"
tag-message = ""