File tree Expand file tree Collapse file tree 5 files changed +5
-7
lines changed Expand file tree Collapse file tree 5 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 14
14
matrix :
15
15
rust : [
16
16
1.31.0, # 2018!
17
- 1.32.0, # rand
18
17
1.34.0, # quickcheck, has_try_from
19
- 1.36.0, # alloc
18
+ 1.36.0, # alloc, rand
20
19
stable,
21
20
beta,
22
21
nightly
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ if your compiler is not new enough.
29
29
feature is enabled. To enable it include rand as
30
30
31
31
``` toml
32
- rand = " 0.7 "
32
+ rand = " 0.8 "
33
33
num-bigint = { version = " 0.3" , features = [" rand" ] }
34
34
```
35
35
36
36
Note that you must use the version of ` rand ` that ` num-bigint ` is compatible
37
- with: ` 0.7 ` .
37
+ with: ` 0.8 ` .
38
38
39
39
## Releases
40
40
Original file line number Diff line number Diff line change 1
1
status = [
2
2
" Test (1.31.0)" ,
3
- " Test (1.32.0)" ,
4
3
" Test (1.34.0)" ,
5
4
" Test (1.36.0)" ,
6
5
" Test (stable)" ,
Original file line number Diff line number Diff line change 5
5
set -ex
6
6
7
7
ci=$( dirname $0 )
8
- for version in 1.31.0 1.32.0 1. 34.0 1.36.0 stable beta nightly; do
8
+ for version in 1.31.0 1.34.0 1.36.0 stable beta nightly; do
9
9
rustup run " $version " " $ci /test_full.sh"
10
10
done
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ if ! check_version $MSRV ; then
28
28
fi
29
29
30
30
STD_FEATURES=(serde)
31
- check_version 1.32 && STD_FEATURES+=(rand)
32
31
check_version 1.34 && STD_FEATURES+=(quickcheck)
32
+ check_version 1.36 && STD_FEATURES+=(rand)
33
33
check_version 1.36 && NO_STD_FEATURES=(serde rand)
34
34
check_version 1.40 && STD_FEATURES+=(arbitrary)
35
35
echo " Testing supported features: ${STD_FEATURES[*]} "
You can’t perform that action at this time.
0 commit comments