mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
I don't know why Dependabot sometimes only touches Cargo.lock, and other times wants to unnecessarily change Cargo.toml too.
20 lines
399 B
TOML
20 lines
399 B
TOML
[package]
|
|
name = "array-parameterized-test"
|
|
description = "Parameterized testing using an input array."
|
|
categories = ["development-tools::testing"]
|
|
version = "1.0.0"
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.83"
|
|
quote = "1.0.35"
|
|
syn = { version = ">= 1.0.0, < 3", features = ["full"] }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[lints]
|
|
workspace = true
|