103 lines
2.1 KiB
TOML
103 lines
2.1 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 = "2021"
|
|
rust-version = "1.70.0"
|
|
name = "rstest"
|
|
version = "0.25.0"
|
|
authors = ["Michele d'Amico <michele.damico@gmail.com>"]
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = """
|
|
Rust fixture based test framework. It use procedural macro
|
|
to implement fixtures and table based tests.
|
|
"""
|
|
homepage = "https://github.com/la10736/rstest"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"test",
|
|
"fixture",
|
|
]
|
|
categories = ["development-tools::testing"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/la10736/rstest"
|
|
|
|
[features]
|
|
async-timeout = [
|
|
"dep:futures-timer",
|
|
"dep:futures-util",
|
|
"rstest_macros/async-timeout",
|
|
]
|
|
crate-name = ["rstest_macros/crate-name"]
|
|
default = [
|
|
"async-timeout",
|
|
"crate-name",
|
|
]
|
|
|
|
[lib]
|
|
name = "rstest"
|
|
path = "src/lib.rs"
|
|
|
|
[[test]]
|
|
name = "integration"
|
|
path = "tests/integration.rs"
|
|
|
|
[dependencies.futures-timer]
|
|
version = "3.0.3"
|
|
optional = true
|
|
|
|
[dependencies.futures-util]
|
|
version = "0.3.30"
|
|
optional = true
|
|
|
|
[dependencies.rstest_macros]
|
|
version = "0.25.0"
|
|
default-features = false
|
|
|
|
[dev-dependencies.actix-rt]
|
|
version = "2.9.0"
|
|
|
|
[dev-dependencies.async-std]
|
|
version = "1.13.0"
|
|
features = ["attributes"]
|
|
|
|
[dev-dependencies.lazy_static]
|
|
version = "1.5.0"
|
|
|
|
[dev-dependencies.mytest]
|
|
version = "0.24.0"
|
|
default-features = false
|
|
package = "rstest"
|
|
|
|
[dev-dependencies.pretty_assertions]
|
|
version = "1.4.1"
|
|
|
|
[dev-dependencies.temp_testdir]
|
|
version = "0.2.3"
|
|
|
|
[dev-dependencies.tokio]
|
|
version = "1.38.1"
|
|
features = [
|
|
"rt",
|
|
"macros",
|
|
]
|
|
|
|
[dev-dependencies.unindent]
|
|
version = "0.2.3"
|
|
|
|
[build-dependencies.rustc_version]
|
|
version = "0.4.1"
|