-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "cargo2junit"
description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout)"
version = "0.1.15"
authors = ["John Erickson <john.t.erickson@gmail.com>"]
edition = "2024"
repository = "https://github.com/johnterickson/cargo2junit"
readme = "README.md"
keywords = ["cargo", "test", "junit"]
categories = ["development-tools::testing"]
license = "MIT"
[badges]
# azure-devops = { repository = "https://github.com/johnterickson/cargo2junit", branch = "master", service = "github" }
maintenance = { status = "experimental" }
[dependencies]
junit-report = "0.7.0"
serde_json = "1.0.38"
serde = { version = "1.0", features = ["derive"] }
strip-ansi-escapes = "0.1.0"
[dev-dependencies]
regex = "1"