-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
Cargo.toml
48 lines (44 loc) · 1.44 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "nextest-filtering"
version = "0.12.0"
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.workspace = true
[[bin]]
name = "generate-expr-corpus"
required-features = ["internal-testing"]
# XXX: Why does cargo-readme need this?
path = "src/bin/generate-expr-corpus.rs"
[features]
default = []
# Note: Not part of the public API.
internal-testing = ["dep:proptest", "dep:test-strategy", "dep:xxhash-rust"]
# Uncomment and enable the feature below to get trace output for parsing. This feature must be
# called `trace` which is a bit unfortunate.
# trace = ["nom-tracable/trace"]
[dependencies]
globset.workspace = true
guppy.workspace = true
miette.workspace = true
nextest-metadata.workspace = true
nextest-workspace-hack.workspace = true
proptest = { workspace = true, optional = true }
recursion.workspace = true
regex-syntax.workspace = true
regex.workspace = true
test-strategy = { workspace = true, optional = true }
thiserror.workspace = true
winnow.workspace = true
xxhash-rust = { workspace = true, features = ["xxh3"], optional = true }
[dev-dependencies]
camino.workspace = true
clap.workspace = true
proptest.workspace = true
test-case.workspace = true
test-strategy.workspace = true