chore: update workspace properties

This commit is contained in:
Victor Martinez 2024-02-26 00:27:59 +01:00
parent 3539bcdd6d
commit 58faeefa63
3 changed files with 25 additions and 19 deletions

View file

@ -1,3 +1,14 @@
[workspace] [workspace]
resolver = "2" resolver = "2"
members = ["test-context", "test-context-macros"] members = ["test-context", "test-context-macros"]
[workspace.package]
edition = "2021"
version = "0.1.4"
homepage = "https://github.com/JasterV/test-context"
repository = "https://github.com/JasterV/test-context"
authors = [
"Mark Hildreth <mark.k.hildreth@gmail.com>",
"Victor Martinez <victor.martinez@jaster.xyz>",
]
license = "MIT"

View file

@ -1,15 +1,12 @@
[package] [package]
name = "test-context-macros" name = "test-context-macros"
version = "0.1.4"
edition = "2021"
description = "Macro crate for test-context" description = "Macro crate for test-context"
homepage = "https://github.com/JasterV/test-context" version.workspace = true
repository = "https://github.com/JasterV/test-context" edition.workspace = true
authors = [ homepage.workspace = true
"Mark Hildreth <mark.k.hildreth@gmail.com>", repository.workspace = true
"Victor Martinez <victor.martinez@jaster.xyz>", authors.workspace = true
] license.workspace = true
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib] [lib]

View file

@ -1,17 +1,15 @@
[package] [package]
name = "test-context" 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" description = "A library for providing custom setup/teardown for Rust tests without needing a test harness"
homepage = "https://github.com/JasterV/test-context" readme = "../README.md"
repository = "https://github.com/JasterV/test-context" keywords = ["test", "setup", "teardown"]
readme = "README.md"
authors = [
"Mark Hildreth <mark.k.hildreth@gmail.com>",
"Victor Martinez <victor.martinez@jaster.xyz>",
]
license = "MIT"
categories = ["development-tools::testing"] categories = ["development-tools::testing"]
version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
authors.workspace = true
license.workspace = true
[dependencies] [dependencies]
test-context-macros = { version = "0.1.4", path = "../test-context-macros/" } test-context-macros = { version = "0.1.4", path = "../test-context-macros/" }