121 lines
2.4 KiB
TOML
121 lines
2.4 KiB
TOML
# 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"
|
|
rust-version = "1.68"
|
|
name = "serial_test"
|
|
version = "3.5.0"
|
|
authors = ["Tom Parker-Shemilt <palfrey@tevp.net>"]
|
|
build = false
|
|
autolib = 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.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = [
|
|
"--cfg",
|
|
"docsrs",
|
|
]
|
|
|
|
[package.metadata.cargo-all-features]
|
|
skip_optional_dependencies = true
|
|
denylist = ["docsrs"]
|
|
always_include_features = ["test_logging"]
|
|
|
|
[features]
|
|
async = [
|
|
"dep:futures-executor",
|
|
"dep:futures-util",
|
|
"serial_test_derive/async",
|
|
]
|
|
default = [
|
|
"logging",
|
|
"async",
|
|
]
|
|
docsrs = ["dep:document-features"]
|
|
file_locks = ["dep:fslock"]
|
|
logging = ["dep:log"]
|
|
test_logging = [
|
|
"logging",
|
|
"dep:env_logger",
|
|
"serial_test_derive/test_logging",
|
|
]
|
|
|
|
[lib]
|
|
name = "serial_test"
|
|
path = "src/lib.rs"
|
|
|
|
[[test]]
|
|
name = "tests"
|
|
path = "tests/tests.rs"
|
|
|
|
[dependencies.document-features]
|
|
version = "0.2"
|
|
optional = true
|
|
|
|
[dependencies.env_logger]
|
|
version = ">=0.6.1"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.fslock]
|
|
version = "0.2"
|
|
features = ["std"]
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.futures-executor]
|
|
version = "^0.3"
|
|
features = ["std"]
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.futures-util]
|
|
version = "^0.3"
|
|
features = ["std"]
|
|
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.serial_test_derive]
|
|
version = "~3.5.0"
|
|
|
|
[dev-dependencies.itertools]
|
|
version = ">=0.4"
|
|
features = ["use_std"]
|
|
default-features = false
|