File tree Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 25
25
- rust : nightly
26
26
- rust : beta
27
27
- rust : stable
28
- - rust : 1.60 .0
28
+ - rust : 1.63 .0
29
29
- rust : 1.64.0
30
30
- rust : 1.70.0
31
31
- rust : 1.74.0
65
65
shell : bash
66
66
- run : cargo run --manifest-path demo/Cargo.toml
67
67
- run : cargo test --workspace ${{steps.testsuite.outputs.exclude}}
68
- if : matrix.rust != '1.60 .0' && matrix.rust != '1.64.0'
68
+ if : matrix.rust != '1.63 .0' && matrix.rust != '1.64.0'
69
69
- run : cargo check --no-default-features --features alloc
70
70
env :
71
71
RUSTFLAGS : --cfg compile_error_if_std ${{env.RUSTFLAGS}}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ keywords = ["ffi", "c++"]
12
12
license = " MIT OR Apache-2.0"
13
13
links = " cxxbridge1"
14
14
repository = " https://github.com/dtolnay/cxx"
15
- rust-version = " 1.60 "
15
+ rust-version = " 1.63 "
16
16
17
17
[features ]
18
18
default = [" std" , " cxxbridge-flags/default" ] # c++11
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ cxx = "1.0"
24
24
cxx-build = " 1.0"
25
25
```
26
26
27
- * Compiler support: requires rustc 1.60 + and c++11 or newer* <br >
27
+ * Compiler support: requires rustc 1.63 + and c++11 or newer* <br >
28
28
* [ Release notes] ( https://github.com/dtolnay/cxx/releases ) *
29
29
30
30
<br >
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ fn main() {
24
24
}
25
25
26
26
if let Some ( rustc) = rustc_version ( ) {
27
- if rustc. minor < 60 {
28
- println ! ( "cargo:warning=The cxx crate requires a rustc version 1.60 .0 or newer." ) ;
27
+ if rustc. minor < 63 {
28
+ println ! ( "cargo:warning=The cxx crate requires a rustc version 1.63 .0 or newer." ) ;
29
29
println ! (
30
30
"cargo:warning=You appear to be building with: {}" ,
31
31
rustc. version,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ description = "Compiler configuration of the `cxx` crate (implementation detail)
7
7
edition = " 2021"
8
8
license = " MIT OR Apache-2.0"
9
9
repository = " https://github.com/dtolnay/cxx"
10
- rust-version = " 1.60 "
10
+ rust-version = " 1.63 "
11
11
12
12
[features ]
13
13
default = [] # c++11
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ homepage = "https://cxx.rs"
11
11
keywords = [" ffi" , " build-dependencies" ]
12
12
license = " MIT OR Apache-2.0"
13
13
repository = " https://github.com/dtolnay/cxx"
14
- rust-version = " 1.60 "
14
+ rust-version = " 1.63 "
15
15
16
16
[features ]
17
17
parallel = [" cc/parallel" ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ exclude = ["build.rs"]
10
10
keywords = [" ffi" ]
11
11
license = " MIT OR Apache-2.0"
12
12
repository = " https://github.com/dtolnay/cxx"
13
- rust-version = " 1.60 "
13
+ rust-version = " 1.63 "
14
14
15
15
[dependencies ]
16
16
codespan-reporting = " 0.11.1"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ homepage = "https://cxx.rs"
10
10
keywords = [" ffi" ]
11
11
license = " MIT OR Apache-2.0"
12
12
repository = " https://github.com/dtolnay/cxx"
13
- rust-version = " 1.60 "
13
+ rust-version = " 1.63 "
14
14
15
15
[lib ]
16
16
proc-macro = true
Original file line number Diff line number Diff line change 18
18
//!
19
19
//! <br>
20
20
//!
21
- //! *Compiler support: requires rustc 1.60 + and c++11 or newer*<br>
21
+ //! *Compiler support: requires rustc 1.63 + and c++11 or newer*<br>
22
22
//! *[Release notes](https://github.com/dtolnay/cxx/releases)*
23
23
//!
24
24
//! <br>
You can’t perform that action at this time.
0 commit comments