# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "dyntest" version = "0.2.1" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Dynamically create test cases." readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/tjjfvi/dyntest" [lib] name = "dyntest" path = "src/lib.rs" [[example]] name = "groups" path = "examples/groups.rs" [[example]] name = "config" path = "examples/config.rs" [[example]] name = "glob" path = "examples/glob.rs" [[example]] name = "basic" path = "examples/basic.rs" [[test]] name = "tests" path = "tests/tests.rs" [dependencies.globset] version = "0.4.14" optional = true [dependencies.walkdir] version = "2.5.0" optional = true [features] default = ["glob"] glob = [ "dep:globset", "dep:walkdir", ]