Merge pull request #30 from JasterV/chore/update-to-2021-edition

chore: update to 2021 rust edition
This commit is contained in:
Víctor Martínez 2024-02-25 23:19:12 +01:00 committed by GitHub
commit 330f938110
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 6 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "test-context"
version = "0.1.4"
edition = "2018"
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"
@ -16,9 +16,7 @@ async-trait = "0.1.42"
futures = "0.3"
[dev-dependencies]
tokio = { version = "1.0", features = ["macros", "rt"]}
tokio = { version = "1.0", features = ["macros", "rt"] }
[workspace]
members = [
"macros",
]
members = ["macros"]

View file

@ -1,7 +1,7 @@
[package]
name = "test-context-macros"
version = "0.1.4"
edition = "2018"
edition = "2021"
description = "Macro crate for test-context"
homepage = "https://github.com/markhildreth/test-context"
repository = "https://github.com/markhildreth/test-context"