forked from nextest-rs/nextest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 860 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 = "nextest-filtering"
version = "0.2.1"
description = "Filtering DSL for cargo-nextest"
license = "MIT OR Apache-2.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/nextest-rs/nextest"
documentation = "https://docs.rs/nextest-filtering"
keywords = ["nextest", "test-runner"]
categories = ["development-tools::testing"]
rust-version = "1.59"
[features]
default = []
# Must be called `trace` which is a bit unfortunate
trace = ["nom-tracable/trace"]
[dependencies]
guppy = "0.14.2"
miette = "5.3.0"
nom = "7.1.1"
nom-tracable = "0.8.0"
nom_locate = "4.0.0"
recursion = "0.1.0"
regex = "1.6.0"
regex-syntax = "0.6.27"
thiserror = "1.0.34"
nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" }
[dev-dependencies]
clap = { version = "3.2.20", features = ["derive"] }
camino = "1.1.1"
test-case = "2.2.1"