# 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 = "generic-tests" version = "0.1.3" authors = ["Mikhail Zabaluev "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Procedural macro to define tests and benchmarks generically" readme = "README.md" keywords = [ "generics", "parametric", "tests", ] categories = ["development-tools::testing"] license = "MIT OR Apache-2.0" repository = "https://github.com/mzabaluev/generic-tests/" [lib] name = "generic_tests" path = "src/macro.rs" proc-macro = true [[test]] name = "async" path = "tests/async.rs" [[test]] name = "tests" path = "tests/tests.rs" [[bench]] name = "const_generics" path = "benches/const_generics.rs" [dependencies.proc-macro2] version = "1.0" [dependencies.quote] version = "1.0" [dependencies.syn] version = "2.0" features = [ "full", "visit", "visit-mut", "extra-traits", ] [dev-dependencies.bytes] version = "1.0" [dev-dependencies.tokio] version = "1.2" features = [ "macros", "rt-multi-thread", "io-util", ] [features]