Skip to content

Commit fe16a5d

Browse files
committedJan 7, 2023
Raise minimum rustc to 1.60
1 parent 1f36272 commit fe16a5d

File tree

8 files changed

+15
-18
lines changed

8 files changed

+15
-18
lines changed
 

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["ffi", "c++"]
1212
license = "MIT OR Apache-2.0"
1313
links = "cxxbridge1"
1414
repository = "https://github.com/dtolnay/cxx"
15-
rust-version = "1.48"
15+
rust-version = "1.60"
1616

1717
[features]
1818
default = ["std", "cxxbridge-flags/default"] # c++11

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cxx = "1.0"
2424
cxx-build = "1.0"
2525
```
2626

27-
*Compiler support: requires rustc 1.48+ and c++11 or newer*<br>
27+
*Compiler support: requires rustc 1.60+ and c++11 or newer*<br>
2828
*[Release notes](https://github.com/dtolnay/cxx/releases)*
2929

3030
<br>

‎build.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,13 @@ fn main() {
2121
}
2222

2323
if let Some(rustc) = rustc_version() {
24-
if rustc.minor < 48 {
25-
println!("cargo:warning=The cxx crate requires a rustc version 1.48.0 or newer.");
24+
if rustc.minor < 60 {
25+
println!("cargo:warning=The cxx crate requires a rustc version 1.60.0 or newer.");
2626
println!(
2727
"cargo:warning=You appear to be building with: {}",
2828
rustc.version,
2929
);
3030
}
31-
32-
if rustc.minor < 52 {
33-
// #![deny(unsafe_op_in_unsafe_fn)].
34-
// https://github.com/rust-lang/rust/issues/71668
35-
println!("cargo:rustc-cfg=no_unsafe_op_in_unsafe_fn_lint");
36-
}
3731
}
3832
}
3933

‎flags/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "Compiler configuration of the `cxx` crate (implementation detail)
77
edition = "2018"
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/dtolnay/cxx"
10-
rust-version = "1.48"
10+
rust-version = "1.60"
1111

1212
[features]
1313
default = [] # c++11

‎gen/build/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = "https://cxx.rs"
1010
keywords = ["ffi", "build-dependencies"]
1111
license = "MIT OR Apache-2.0"
1212
repository = "https://github.com/dtolnay/cxx"
13-
rust-version = "1.48"
13+
rust-version = "1.60"
1414

1515
[features]
1616
parallel = ["cc/parallel"]

‎gen/lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exclude = ["build.rs"]
99
keywords = ["ffi"]
1010
license = "MIT OR Apache-2.0"
1111
repository = "https://github.com/dtolnay/cxx"
12-
rust-version = "1.48"
12+
rust-version = "1.60"
1313

1414
[dependencies]
1515
codespan-reporting = "0.11"

‎macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = "https://cxx.rs"
1010
keywords = ["ffi"]
1111
license = "MIT OR Apache-2.0"
1212
repository = "https://github.com/dtolnay/cxx"
13-
rust-version = "1.48"
13+
rust-version = "1.60"
1414

1515
[lib]
1616
proc-macro = true

‎src/lib.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//!
1919
//! <br>
2020
//!
21-
//! *Compiler support: requires rustc 1.48+ and c++11 or newer*<br>
21+
//! *Compiler support: requires rustc 1.60+ and c++11 or newer*<br>
2222
//! *[Release notes](https://github.com/dtolnay/cxx/releases)*
2323
//!
2424
//! <br>
@@ -365,9 +365,12 @@
365365
366366
#![no_std]
367367
#![doc(html_root_url = "https://docs.rs/cxx/1.0.86")]
368-
#![deny(improper_ctypes, improper_ctypes_definitions, missing_docs)]
369-
#![cfg_attr(not(no_unsafe_op_in_unsafe_fn_lint), deny(unsafe_op_in_unsafe_fn))]
370-
#![cfg_attr(no_unsafe_op_in_unsafe_fn_lint, allow(unused_unsafe))]
368+
#![deny(
369+
improper_ctypes,
370+
improper_ctypes_definitions,
371+
missing_docs,
372+
unsafe_op_in_unsafe_fn
373+
)]
371374
#![cfg_attr(doc_cfg, feature(doc_cfg))]
372375
#![allow(non_camel_case_types)]
373376
#![allow(

0 commit comments

Comments
 (0)
Please sign in to comment.