File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ description = "The trait for generating structured data from unstructured data"
17
17
license = " MIT OR Apache-2.0"
18
18
repository = " https://github.com/rust-fuzz/arbitrary/"
19
19
documentation = " https://docs.rs/arbitrary/"
20
- rust-version = " 1.63.0"
20
+ rust-version = " 1.63.0" # Keep in sync with version documented in the README.md
21
21
22
22
[dependencies ]
23
23
derive_arbitrary = { version = " 1.4.0" , path = " ./derive" , optional = true }
Original file line number Diff line number Diff line change @@ -120,6 +120,16 @@ impl<'a> Arbitrary<'a> for Rgb {
120
120
}
121
121
```
122
122
123
+ ## Minimum Supported Rust Version (MSRV)
124
+
125
+ <!-- NB: Keep this number in sync with the `rust-version` in `Cargo.toml`. -->
126
+
127
+ This crate is guaranteed to compile on stable Rust ** 1.63.0** and up. It might
128
+ compile with older versions but that may change in any new patch release.
129
+
130
+ We reserve the right to increment the MSRV on minor releases, however we will
131
+ strive to only do it deliberately and for good reasons.
132
+
123
133
## License
124
134
125
135
Licensed under dual MIT or Apache-2.0 at your choice.
You can’t perform that action at this time.
0 commit comments