-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
26 lines (22 loc) · 911 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
[package]
name = "parameterized"
version = "2.0.0"
authors = ["Martijn Gribnau <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Procedural macro which brings a compact parameterized testing implementation to Rust (inspired by JUnit @ParameterizedTest)"
documentation = "https://docs.rs/crate/parameterized"
repository = "https://github.com/foresterre/parameterized"
readme = "README.md"
keywords = ["parameterized", "parametrized", "test", "unit-test", "junit"]
categories = ["development-tools", "development-tools::testing"]
rust-version = "1.63"
[features]
# not semver protected
square-brackets-old-error-message = ["parameterized-macro/square-brackets-old-error-message"]
[workspace]
members = ["parameterized-macro"]
[dependencies]
parameterized-macro = { path = "parameterized-macro", version = "2" }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }