1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
# 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 = "2018"
name = "serial_test"
version = "3.2.0"
authors = ["Tom Parker-Shemilt <palfrey@tevp.net>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Allows for the creation of serialised Rust tests"
readme = "README.md"
keywords = [
"sequential",
"testing",
"parallel",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/palfrey/serial_test/"
[package.metadata.cargo-all-features]
denylist = [
"docsrs",
"test_logging",
]
skip_optional_dependencies = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "serial_test"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.env_logger]
version = ">=0.6.1"
optional = true
default-features = false
[dependencies.futures]
version = "^0.3"
features = ["executor"]
optional = true
default-features = false
[dependencies.log]
version = ">=0.4.4"
optional = true
[dependencies.once_cell]
version = "^1.19"
features = ["std"]
default-features = false
[dependencies.parking_lot]
version = "^0.12"
default-features = false
[dependencies.scc]
version = "3"
default-features = false
[dependencies.serial_test_derive]
version = "~3.2.0"
[dev-dependencies.itertools]
version = ">=0.4"
features = ["use_std"]
default-features = false
[features]
async = [
"dep:futures",
"serial_test_derive/async",
]
default = [
"logging",
"async",
]
logging = ["dep:log"]
test_logging = [
"logging",
"dep:env_logger",
"serial_test_derive/test_logging",
]
|