2025-04-24 19:44:52 +01:00
|
|
|
[package]
|
2025-08-02 14:51:21 +01:00
|
|
|
name = "array-parameterized-test"
|
|
|
|
|
description = "Parameterized testing using an input array."
|
2025-08-02 10:56:27 +01:00
|
|
|
categories = ["development-tools::testing"]
|
2025-08-02 16:20:04 +01:00
|
|
|
version = "1.0.0"
|
2025-08-02 10:56:27 +01:00
|
|
|
repository.workspace = true
|
2025-07-31 17:21:05 +01:00
|
|
|
edition.workspace = true
|
2025-05-08 20:36:58 +01:00
|
|
|
license = "MIT"
|
2025-04-24 19:44:52 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
proc-macro2 = "1.0.95"
|
|
|
|
|
quote = "1.0.40"
|
2025-06-23 18:02:42 +00:00
|
|
|
syn = { version = "2.0.104", features = ["full"] }
|
2025-04-24 19:44:52 +01:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
proc-macro = true
|
2025-07-20 21:09:46 +01:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|