forked from netvl/xml-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 824 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
[package]
name = "xml-rs"
version = "0.8.13"
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"
[dev-dependencies]
doc-comment = "0.3"
[badges]
maintenance = { status = "actively-developed" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[package.metadata.release]
tag-name = "{{version}}"
tag-message = ""