# 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 = "tux" version = "0.2.2" description = "Test utilities for unit and integration tests" readme = "../README.md" keywords = [ "tests", "unit-tests", ] categories = ["development-tools::testing"] license = "MIT" repository = "https://github.com/ax-lab/tux" [package.metadata.docs.rs] all-features = true [lib] path = "src/lib.rs" [dependencies.path-clean] version = "0.1" optional = true [dependencies.tempfile] version = "3" optional = true [dependencies.tokio] version = "1" features = ["full"] optional = true [dependencies.warp] version = "0.3" optional = true [dev-dependencies.reqwest] version = "0.11" features = ["blocking"] [features] default = [ "diff", "exec", "temp", "testdata", "text", ] diff = ["text"] exec = [] server = [ "dep:tokio", "dep:warp", ] temp = [ "dep:path-clean", "dep:tempfile", ] testdata = ["diff"] text = []