35 lines
624 B
TOML
35 lines
624 B
TOML
[package]
|
|
name = "vendor-webgpu-cts"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["human_friendly"]
|
|
human_friendly = [
|
|
"clap/color",
|
|
"clap/help",
|
|
"clap/suggestions",
|
|
"clap/usage",
|
|
"env_logger/auto-color",
|
|
"env_logger/humantime",
|
|
]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.1.6", default-features = false, features = [
|
|
"derive",
|
|
"error-context",
|
|
"std",
|
|
] }
|
|
dunce = "1.0.3"
|
|
env_logger = { version = "0.11.0", default-features = false }
|
|
ezcmd = "0.3.0"
|
|
itertools = "0.11.0"
|
|
joinery = "3.1.0"
|
|
log = "0.4.17"
|
|
miette = "7.6.0"
|
|
regex = "1.11.1"
|
|
thiserror = "2"
|
|
wax = "0.6.0"
|
|
which = "4.4.0"
|
|
|
|
[workspace]
|