Cargo.toml (624B)
1 [package] 2 name = "vendor-webgpu-cts" 3 version = "0.1.0" 4 edition = "2021" 5 6 [features] 7 default = ["human_friendly"] 8 human_friendly = [ 9 "clap/color", 10 "clap/help", 11 "clap/suggestions", 12 "clap/usage", 13 "env_logger/auto-color", 14 "env_logger/humantime", 15 ] 16 17 [dependencies] 18 clap = { version = "4.1.6", default-features = false, features = [ 19 "derive", 20 "error-context", 21 "std", 22 ] } 23 dunce = "1.0.3" 24 env_logger = { version = "0.11.0", default-features = false } 25 ezcmd = "0.3.0" 26 itertools = "0.11.0" 27 joinery = "3.1.0" 28 log = "0.4.17" 29 miette = "7.6.0" 30 regex = "1.11.1" 31 thiserror = "2" 32 wax = "0.6.0" 33 which = "4.4.0" 34 35 [workspace]