Skip to content

Commit

Permalink
Dependency Update (#74)
Browse files Browse the repository at this point in the history
* automated dependency update

* update lib dependency

* bounce version

---------

Co-authored-by: yanganto <[email protected]>
Co-authored-by: Antonio Yang <[email protected]>
  • Loading branch information
3 people authored Oct 19, 2023
1 parent 7c37881 commit ea11227
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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.11.1"
version = "0.11.2"
authors = ["Antonio Yang <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -24,7 +24,7 @@ ping = { version = "0.5", optional = true }
sysinfo = { version = "0.29", optional = true }
byte-unit = { version = "4.0", optional = true }
num_cpus = { version = "1.13", optional = true }
which = { version = "4.3", optional = true }
which = { version = "5.0", optional = true }

[target.'cfg(not(target_os = "windows"))'.dependencies]
users = { version = "0.11", optional = true }
Expand Down
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 ea11227

Please sign in to comment.