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
10 changes: 5 additions & 5 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
@@ -1,6 +1,6 @@
[package]
name = "test-with"
version = "0.15.7"
version = "0.15.8"
authors = ["Antonio Yang <yanganto@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -48,5 +48,5 @@ timezone = ["chrono"]
[dev-dependencies]
tokio = { version = "1.38.0", features = ["rt", "rt-multi-thread", "macros"] }
serial_test = "3.1.1"
libtest-with = { version = "0.8.1-13", features = ["net", "resource", "user", "executable", "timezone"] }
libtest-with = { version = "0.8.1-14", features = ["net", "resource", "user", "executable", "timezone"] }
rstest = "0.26.1"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,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, and also include the `libtest-with` with corresponding features in `Cargo.toml`.
```toml
test-with = { version = "0.15.0", features = ["runtime"] }
libtest-with = { version = "0.8.1-13", features = ["net", "resource", "user", "executable"] }
libtest-with = { version = "0.8.1-14", features = ["net", "resource", "user", "executable"] }
```

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 examples/runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"

[dependencies]
test-with = { path = "../../", features = ["runtime"] }
libtest-with = { version = "0.8.1-13", features = ["net", "resource", "user", "executable", "timezone"] }
libtest-with = { version = "0.8.1-14", features = ["net", "resource", "user", "executable", "timezone"] }
tokio = "1.45.1"
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.

2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
//! ```toml
//! [dependencies]
//! test-with = { version = "*", default-features = false, features = ["runtime"] }
//! libtest-with = { version = "0.8.1-13", features = ["net", "resource", "user", "executable", "timezone"] }
//! libtest-with = { version = "0.8.1-14", features = ["net", "resource", "user", "executable", "timezone"] }
//! ```
//!
//! ```rust
Expand Down