-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathCargo.toml
40 lines (33 loc) · 1.2 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
[package]
name = "test-case"
version = "3.3.1"
edition = "2021"
authors = ["Marcin Sas-Szymanski <[email protected]>", "Wojciech Polak <[email protected]>", "Łukasz Biel <[email protected]>"]
description = "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily"
keywords = ["test", "case", "tests", "unit", "testing"]
categories = ["development-tools", "development-tools::testing"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/frondeus/test-case"
documentation = "https://docs.rs/test-case"
exclude = ["tests/snapshots/**/*"]
rust-version = "1.63"
[features]
with-regex = ["regex", "test-case-macros/with-regex"]
[badges]
maintenance = { status = "actively-developed" }
[lib]
doctest = false
path = "src/lib.rs"
[dependencies]
test-case-macros = { version = "3.2.1", path = "crates/test-case-macros", default-features = false }
regex = { version = "1.5", optional = true }
[dev-dependencies]
insta = "1.12"
itertools = "0.11"
regex = "1.5"
[workspace]
members = ["crates/*"]
[[test]]
name = "acceptance"
path = "tests/acceptance_tests.rs"