Skip to content

Commit

Permalink
update lib dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
yanganto committed Oct 19, 2023
1 parent 7b40933 commit a3a8d07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,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.10", features = ["runtime"] }
libtest-with = { version = "0.6.1-2", features = ["net", "resource", "user", "executable"] }
libtest-with = { version = "0.6.1-3", 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,4 +5,4 @@ edition = "2021"

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

0 comments on commit a3a8d07

Please sign in to comment.