Skip to content

Commit

Permalink
Merge pull request #30 from JasterV/chore/update-to-2021-edition
Browse files Browse the repository at this point in the history
chore: update to 2021 rust edition
  • Loading branch information
JasterV authored Feb 25, 2024
2 parents 0180c24 + 8a2f589 commit 330f938
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"]
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 330f938

Please sign in to comment.