mirror of
https://codeberg.org/JasterV/test-context.git
synced 2026-04-26 18:10:06 +00:00
25 lines
702 B
TOML
25 lines
702 B
TOML
[package]
|
|
name = "test-context"
|
|
version = "0.1.4"
|
|
edition = "2021"
|
|
description = "A library for providing custom setup/teardown for Rust tests without needing a test harness"
|
|
homepage = "https://github.com/JasterV/test-context"
|
|
repository = "https://github.com/JasterV/test-context"
|
|
readme = "README.md"
|
|
authors = [
|
|
"Mark Hildreth <mark.k.hildreth@gmail.com>",
|
|
"Victor Martinez <victor.martinez@jaster.xyz>",
|
|
]
|
|
license = "MIT"
|
|
categories = ["development-tools::testing"]
|
|
|
|
[dependencies]
|
|
test-context-macros = { version = "0.1.4", path = "macros" }
|
|
async-trait = "0.1.42"
|
|
futures = "0.3"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.0", features = ["macros", "rt"] }
|
|
|
|
[workspace]
|
|
members = ["macros"]
|