1[package] 2name = "libtest-mimic" 3version = "0.6.0" 4authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"] 5edition = "2021" 6rust-version = "1.60" 7 8description = """ 9Write your own test harness that looks and behaves like the built-in test \ 10harness used by `rustc --test` 11""" 12documentation = "https://docs.rs/libtest-mimic" 13repository = "https://github.com/LukasKalbertodt/libtest-mimic" 14license = "MIT/Apache-2.0" 15keywords = ["libtest", "test", "built-in", "framework", "harness"] 16categories = ["development-tools::testing", "development-tools::build-utils"] 17readme = "README.md" 18 19exclude = [".github"] 20 21[dependencies] 22clap = { version = "4.0.8", features = ["derive"] } 23threadpool = "1.8.1" 24termcolor = "1.0.5" 25 26[dev-dependencies] 27fastrand = "1.8.0" 28pretty_assertions = "1.2.1" 29