File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
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.56 .0 # MSRV
15
+ - 1.63 .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.56 .0'
32
+ if : matrix.version == '1.63 .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.56 .0'
41
+ # if: matrix.version != '1.63 .0'
42
42
# run: cargo test --all -- --nocapture
43
43
44
44
- name : Run libc tests
45
- if : matrix.version != '1.56 .0'
45
+ if : matrix.version != '1.63 .0'
46
46
run : sh ./ci/run-docker.sh ${{ matrix.target }}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Automated tests of FFI bindings.
11
11
"""
12
12
include = [" src/lib.rs" , " LICENSE-*" , " README.md" ]
13
13
edition = " 2021"
14
- rust-version = " 1.56 .0"
14
+ rust-version = " 1.63 .0"
15
15
16
16
[dependencies ]
17
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.56 .0 because of the transitive dependencies.
17
+ The MSRV is 1.63 .0 because of the transitive dependencies.
18
18
Note that MSRV may be changed anytime by dependencies.
19
19
20
20
## Example
You can’t perform that action at this time.
0 commit comments