test-context/Cargo.toml
2021-02-07 00:13:22 -05:00

24 lines
661 B
TOML

[package]
name = "test-context"
version = "0.1.2"
edition = "2018"
description = "A library for providing custom setup/teardown for Rust tests without needing a test harness"
homepage = "https://github.com/markhildreth/test-context"
repository = "https://github.com/markhildreth/test-context"
readme = "README.md"
authors = ["Mark Hildreth <mark.k.hildreth@gmail.com>"]
license = "MIT"
categories = ["development-tools::testing"]
[dependencies]
test-context-macros = { version = "0.1.1", path = "macros" }
async-trait = "0.1.42"
futures = "0.3"
[dev-dependencies]
tokio = { version = "1.0", features = ["macros", "rt"]}
[workspace]
members = [
"macros",
]