-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
54 lines (44 loc) · 1.12 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
49
50
51
52
53
54
[package]
name = "datatest-stable"
version = "0.3.2"
description = "Data-driven tests that work on stable Rust"
repository = "https://github.com/nextest-rs/datatest-stable"
license = "MIT OR Apache-2.0"
publish = true
readme = "README.md"
edition = "2021"
categories = ["development-tools::testing"]
keywords = ["datatest", "data-driven-tests", "test-harness"]
rust-version = "1.72"
[badges]
maintenance = { status = "passively-maintained" }
[package.metadata.cargo-sync-rdme.badge.badges]
maintenance = true
license = true
crates-io = true
docs-rs = true
rust-version = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg=doc_cfg"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
[dependencies]
camino = "1.1.9"
fancy-regex = "0.14.0"
include_dir = { version = "0.7.4", optional = true }
libtest-mimic = "0.8.1"
walkdir = "2.5.0"
[dev-dependencies]
trybuild = "1.0.101"
[target.'cfg(unix)'.dev-dependencies]
camino-tempfile = "1.1.1"
fs_extra = "1.3.0"
[[test]]
name = "example"
harness = false
[[test]]
name = "integration"
harness = true
[features]
include-dir = ["dep:include_dir"]