blob: 0b8c70208ee470be2f5af2682f92a086a5b173b4 (
plain)
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
|
[package]
name = "xml-stinks"
version = "0.1.0"
authors = ["HampusM <hampus@hampusmat.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://git.hampusmat.com/xml-stinks"
description = "Powerful & easy manual XML deserialization using quick-xml"
categories = ["parser-implementations", "encoding", "parsing"]
keywords = ["xml", "parser", "parsing"]
[features]
deserializer-static-generics = []
[dependencies]
quick-xml = "0.28.2"
thiserror = "1.0.38"
[dev-dependencies]
mockall = "0.11.4"
[[example]]
name = "testing"
test = true
required-features = ["deserializer-static-generics"]
|