File tree 4 files changed +11
-3
lines changed
4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 25
25
run : cargo test --verbose --all-features --all
26
26
- name : Build Examples
27
27
run : cargo build --examples --all-features --all
28
+ msrv :
29
+ name : Minimum Supported Rust Version
30
+ runs-on : ubuntu-latest
31
+ steps :
32
+ - uses : actions/checkout@v3
33
+ - run : rustup toolchain add 1.63
34
+ - name : Build
35
+ run : cargo +1.63 check --lib --all-features
28
36
clippy :
29
37
name : Clippy
30
38
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " arbitrary"
3
- version = " 1.4.0 " # Make sure this matches the derive crate version (not including the patch version)
3
+ version = " 1.4.1 " # Make sure this matches the derive crate version (not including the patch version)
4
4
authors = [
5
5
" The Rust-Fuzz Project Developers" ,
6
6
" Nick Fitzgerald <[email protected] >" ,
Original file line number Diff line number Diff line change 5
5
6
6
impl < ' a , A > Arbitrary < ' a > for Cow < ' a , A >
7
7
where
8
- A : ToOwned + ?Sized ,
8
+ A : ToOwned + ?Sized + ' a ,
9
9
<A as ToOwned >:: Owned : Arbitrary < ' a > ,
10
10
{
11
11
fn arbitrary ( u : & mut Unstructured < ' a > ) -> Result < Self > {
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ impl core::fmt::Display for MaxRecursionReached {
49
49
}
50
50
}
51
51
52
- impl core :: error:: Error for MaxRecursionReached { }
52
+ impl std :: error:: Error for MaxRecursionReached { }
53
53
54
54
/// Generate arbitrary structured values from raw, unstructured data.
55
55
///
You can’t perform that action at this time.
0 commit comments