-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 867 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
27
28
29
30
31
32
33
34
[package]
name = "tap-consooomer"
version = "0.1.0"
authors = ["Andreas Baulig <[email protected]>"]
edition = "2018"
rust-version = "1.74.0"
description = "Parse Test Anything Protocol (TAP) files"
repository = "https://github.com/ChiefGokhlayeh/tap-consooomer"
license = "Apache-2.0"
keywords = ["consumer", "parser", "tap", "test-anything"]
categories = [
"command-line-utilities",
"development-tools::testing",
"development-tools",
"parsing",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.94"
clap = { version = "4.5.23", features = ["derive"] }
pest = "2.7.14"
pest_derive = "2.7.14"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
[lib]
name = "tapconsooomer"
path = "src/lib.rs"
[[bin]]
name = "tap"
path = "src/main.rs"