# 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" rust-version = "1.56" name = "junit-parser" version = "1.3.1" authors = ["Boris Faure "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Rust library to parse JUnit XML files" documentation = "https://docs.rs/junit-parser/" readme = "README.md" keywords = [ "junit", "xunit", "xml", "parser", "report", ] categories = [ "development-tools::testing", "parser-implementations", ] license = "BSD-2-Clause" repository = "https://github.com/borisfaure/junit-parser" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "junit_parser" path = "src/lib.rs" [[test]] name = "cdata" path = "tests/cdata.rs" [[test]] name = "invalid" path = "tests/invalid.rs" [[test]] name = "properties" path = "tests/properties.rs" [[test]] name = "system" path = "tests/system.rs" [[test]] name = "tests" path = "tests/tests.rs" [dependencies.document-features] version = "0.2" optional = true [dependencies.quick-xml] version = "0.37" features = ["escape-html"] [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.thiserror] version = "1.0" [features] default = [ "properties_as_hashmap", "properties_as_vector", ] document-features = ["dep:document-features"] properties_as_hashmap = [] properties_as_vector = [] serde = ["dep:serde"] [badges.github] repository = "borisfaure/junit-parser"