-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 713 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 713 Bytes
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
[package]
name = "generic-tests"
version = "0.1.3"
authors = ["Mikhail Zabaluev <mikhail.zabaluev@gmail.com>"]
edition = "2021"
description = "Procedural macro to define tests and benchmarks generically"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mzabaluev/generic-tests/"
categories = ["development-tools::testing"]
keywords = ["generics", "parametric", "tests"]
[lib]
proc-macro = true
path = "src/macro.rs"
[features]
[dependencies]
syn = { version = "2.0", features = ["full", "visit", "visit-mut", "extra-traits"] }
proc-macro2 = "1.0"
quote = "1.0"
[dev-dependencies]
bytes = "1.0"
tokio = { version = "1.2", features = ["macros", "rt-multi-thread", "io-util"] }