refactor: restructure the workspace members organization

This commit is contained in:
Victor Martinez 2024-02-26 00:19:53 +01:00
parent 1e161bcd46
commit 3539bcdd6d
6 changed files with 24 additions and 24 deletions

View file

@ -1,25 +1,3 @@
[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"]
resolver = "2"
members = ["test-context", "test-context-macros"]

22
test-context/Cargo.toml Normal file
View file

@ -0,0 +1,22 @@
[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 = "../test-context-macros/" }
async-trait = "0.1.42"
futures = "0.3"
[dev-dependencies]
tokio = { version = "1.0", features = ["macros", "rt"] }