File tree Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 12
12
fail-fast : false
13
13
matrix :
14
14
version :
15
- - 1.46 .0 # MSRV
15
+ - 1.56 .0 # MSRV
16
16
- stable
17
17
- beta
18
18
- nightly
29
29
run : TOOLCHAIN=${{ matrix.version }} TARGET=${{ matrix.target }} sh ./ci/install-rust.sh
30
30
31
31
- name : Check MSRV
32
- if : matrix.version == '1.46 .0'
32
+ if : matrix.version == '1.56 .0'
33
33
run : cargo check
34
34
35
35
# FIXME: Some symbols cause multiple definitions error on the same line:
38
38
# /home/runner/work/ctest2/ctest2/target/debug/deps/libtestcrate-a072d428f9532abb.rlib(t1.o):
39
39
# /home/runner/work/ctest2/ctest2/testcrate/src/t1.h:65: first defined here
40
40
# - name: Run tests
41
- # if: matrix.version != '1.46 .0'
41
+ # if: matrix.version != '1.56 .0'
42
42
# run: cargo test --all -- --nocapture
43
43
44
44
- name : Run libc tests
45
- if : matrix.version != '1.46 .0'
45
+ if : matrix.version != '1.56 .0'
46
46
run : sh ./ci/run-docker.sh ${{ matrix.target }}
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Automated tests of FFI bindings.
11
11
"""
12
12
include = [" src/lib.rs" , " LICENSE-*" , " README.md" ]
13
13
edition = " 2018"
14
+ rust-version = " 1.56.0"
14
15
15
16
[dependencies ]
16
17
garando_syntax = " 0.1"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ APIs in Rust match the APIs defined in C.
14
14
15
15
## MSRV (Minimum Supported Rust Version)
16
16
17
- The MSRV is 1.46 .0 because of the ` bitflags ` dependency .
17
+ The MSRV is 1.56 .0 because of the transitive dependencies .
18
18
Note that MSRV may be changed anytime by dependencies.
19
19
20
20
## Example
@@ -91,17 +91,17 @@ you can browse [the documentation][dox].
91
91
92
92
## Projects using ctest2
93
93
94
- * [ libc] ( https://github.com/rust-lang/libc )
95
- * [ libz-sys] ( https://github.com/rust-lang/libz-sys )
94
+ - [ libc] ( https://github.com/rust-lang/libc )
95
+ - [ libz-sys] ( https://github.com/rust-lang/libz-sys )
96
96
97
97
## License
98
98
99
99
This project is licensed under either of
100
100
101
- * Apache License, Version 2.0, ([ LICENSE-APACHE] ( LICENSE-APACHE ) or
102
- https://www.apache.org/licenses/LICENSE-2.0 )
103
- * MIT license ([ LICENSE-MIT] ( LICENSE-MIT ) or
104
- https://opensource.org/licenses/MIT )
101
+ - Apache License, Version 2.0, ([ LICENSE-APACHE] ( LICENSE-APACHE ) or
102
+ https://www.apache.org/licenses/LICENSE-2.0 )
103
+ - MIT license ([ LICENSE-MIT] ( LICENSE-MIT ) or
104
+ https://opensource.org/licenses/MIT )
105
105
106
106
at your option.
107
107
You can’t perform that action at this time.
0 commit comments