junit2json 0.2.14

A tool convert JUnit XML format to JSON with Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "junit2json"
version = "0.2.14"
authors = ["Kenta Kase <kesin1202000@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tool convert JUnit XML format to JSON with Rust"
homepage = "https://github.com/Kesin11/junit2json-rs"
readme = "README.md"
keywords = ["junit"]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/Kesin11/junit2json-rs"

[package.metadata.release]
pre-release-commit-message = "[skip ci]: Release {{crate_name}} version {{version}}"

[lib]
name = "junit2json"
path = "src/lib.rs"

[[bin]]
name = "junit2json"
path = "src/main.rs"

[[test]]
name = "deserialize"
path = "tests/deserialize.rs"

[[test]]
name = "filter_tags"
path = "tests/filter_tags.rs"

[[test]]
name = "serialize"
path = "tests/serialize.rs"

[[test]]
name = "snapshot"
path = "tests/snapshot.rs"

[dependencies.clap]
version = "4.5.55"
features = ["derive"]

[dependencies.quick-xml]
version = "0.39.0"
features = [
    "serialize",
    "serde-types",
]

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.149"

[dependencies.serde_with]
version = "3.16.1"

[dev-dependencies.insta]
version = "1.46.1"
features = [
    "json",
    "glob",
]

[dev-dependencies.pretty_assertions]
version = "1.4.1"