chore: update crate information

This commit is contained in:
Victor Martinez 2024-02-25 23:43:19 +01:00
parent bd43160d42
commit 352be5dc90
2 changed files with 12 additions and 7 deletions

View file

@ -3,10 +3,13 @@ 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/markhildreth/test-context"
repository = "https://github.com/markhildreth/test-context"
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>"]
authors = [
"Mark Hildreth <mark.k.hildreth@gmail.com>",
"Victor Martinez <victor.martinez@jaster.xyz>",
]
license = "MIT"
categories = ["development-tools::testing"]

View file

@ -3,9 +3,12 @@ name = "test-context-macros"
version = "0.1.4"
edition = "2021"
description = "Macro crate for test-context"
homepage = "https://github.com/markhildreth/test-context"
repository = "https://github.com/markhildreth/test-context"
authors = ["Mark Hildreth <mark.k.hildreth@gmail.com>"]
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"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -15,4 +18,3 @@ proc-macro = true
[dependencies]
quote = "1.0.3"
syn = { version = "^2", features = ["full"] }