-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (22 loc) · 842 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 = "simple_test_case"
version = "1.2.0"
edition = "2021"
authors = ["sminez <[email protected]>"]
license = "MIT"
repository = "https://github.com/sminez/simple_test_case"
documentation = "https://docs.rs/simple_test_case"
readme = "README.md"
description = "A bare bones attribute macro for writing parameterised tests"
keywords = ["test", "case", "testing", "testcase", "unittest"]
categories = ["development-tools", "development-tools::testing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "^1.0"
quote = "^1.0"
syn = { version = "^2.0", features = ["full", "extra-traits"] }
[dev-dependencies]
anyhow = "1.0.72"
tokio = { version = "1.29.1", features = ["rt", "macros", "rt-multi-thread"] }