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]
|
2026-01-06 19:27:23 +00:00
|
|
|
proc-macro2 = "1.0.83"
|
2025-09-28 21:07:41 +01:00
|
|
|
quote = "1.0.35"
|
|
|
|
|
syn = { version = ">= 1.0.0, < 3", 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
|