Skip to content

Commit 6edc6db

Browse files
committed
[quick-junit] add MSRV note
1 parent 3b3a065 commit 6edc6db

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

quick-junit/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ assert_eq!(report.to_string().unwrap(), EXPECTED_XML);
6363
For a more comprehensive example, including reruns and flaky tests, see
6464
[`fixture_tests.rs`](https://github.com/nextest-rs/nextest/blob/main/quick-junit/tests/fixture_tests.rs).
6565

66+
## Minimum supported Rust version (MSRV)
67+
68+
The minimum supported Rust version is **Rust 1.56.**
69+
70+
While this crate is a pre-release (0.x.x) it may have its MSRV bumped in a patch release.
71+
Once a crate has reached 1.x, any MSRV bump will be accompanied with a new minor version.
72+
6673
## Alternatives
6774

6875
* [**junit-report**](https://crates.io/crates/junit-report): Older, more mature project. Doesn't

quick-junit/src/lib.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@
5959
//! For a more comprehensive example, including reruns and flaky tests, see
6060
//! [`fixture_tests.rs`](https://github.com/nextest-rs/nextest/blob/main/quick-junit/tests/fixture_tests.rs).
6161
//!
62+
//! # Minimum supported Rust version (MSRV)
63+
//!
64+
//! The minimum supported Rust version is **Rust 1.56.**
65+
//!
66+
//! While this crate is a pre-release (0.x.x) it may have its MSRV bumped in a patch release.
67+
//! Once a crate has reached 1.x, any MSRV bump will be accompanied with a new minor version.
68+
//!
6269
//! # Alternatives
6370
//!
6471
//! * [**junit-report**](https://crates.io/crates/junit-report): Older, more mature project. Doesn't

0 commit comments

Comments
 (0)