forked from msuchane/vale2junit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (24 loc) · 846 Bytes
/
Cargo.toml
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
26
[package]
name = "vale2junit"
version = "1.1.0"
edition = "2021"
authors = ["Marek Suchánek <msuchane@redhat.com>"]
# Check the Rust version using `cargo msrv verify`.
rust-version = "1.67"
description = "Convert the JSON output from Vale to the JUnit format."
license = "Apache-2.0"
readme = "README.md"
categories = ["command-line-utilities", "text-processing"]
repository = "https://github.com/redhat-documentation/vale2junit/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bpaf = { version = "0.9", features = ["derive", "dull-color"]}
log = "0.4"
simplelog = "0.12"
# Disable support for tracing_error and SpanTrace in eyre
color-eyre = { version = "0.6", default-features = false }
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "1.0"
junit-report = "0.8"
csv = "1.3"