Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 53 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["derive", "lib", "examples-with-runner"]
resolver = "2"

[workspace.package]
version = "0.16.3"
version = "0.16.4"
authors = ["Antonio Yang <yanganto@gmail.com>"]
edition = "2021"
description = "A library that helps you run tests with conditions"
Expand All @@ -12,4 +12,4 @@ readme = "README.md"
repository = "https://github.com/yanganto/test-with"
keywords = [ "testing", "condition", "toggle", "integration", "ignore" ]
categories = [ "development-tools" ]
rust-version = "1.88.0"
rust-version = "1.95.0"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ the test runner will treat it as the test in Rust and also provide the same summ

The `runtime` feature should be enabled and include as normal dependency( not dev-dependencies).
```toml
test-with = { version = "0.16.3", features = ["runtime"] }
test-with = { version = "0.16.4", features = ["runtime"] }
```

Create an example with the following runtime macros (`test_with::runner!`, `#[test_with::module]`, `#[test_with::runtime_env()]`).
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ regex = { version = "1" }

reqwest = { version = "0.13", features = ["blocking"], optional = true }
ping = { version = "0.8.0", optional = true }
sysinfo = { version = "0.38", optional = true }
sysinfo = { version = "0.39", optional = true }
byte-unit = { version = "5.0", optional = true }
num_cpus = { version = "1.13", optional = true }
which = { version = "8.0", optional = true }
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ rust-version.workspace = true
readme.workspace = true

[dependencies]
test-with-derive = { version = "=0.16.3", path = "../derive", default-features = false }
test-with-derive = { version = "=0.16.4", path = "../derive", default-features = false }

reqwest = { version = "0.13", features = ["blocking"], optional = true }
ping = { version = "0.8.0", optional = true }
sysinfo = { version = "0.38", optional = true }
sysinfo = { version = "0.39", optional = true }
byte-unit = { version = "5.0", optional = true }
num_cpus = { version = "1.13", optional = true }
which = { version = "8.0", optional = true }
Expand Down