[package]
edition = "2024"
rust-version = "1.94"
name = "two_xml2json"
version = "0.0.1"
authors = ["Ivan Carvalho <ivancarvalho@gatech.edu>"]
build = false
include = [
"src/**",
"tests/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convert XML documents to serde_json values"
readme = "README.md"
keywords = [
"xml",
"json",
"serde",
"converter",
]
categories = [
"encoding",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/IvanIsCoding/two_xml2json"
[lib]
name = "two_xml2json"
path = "src/lib.rs"
[[test]]
name = "xml_golden"
path = "tests/xml_golden.rs"
[dependencies.quick-xml]
version = "=0.41.0"
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]