File tree 8 files changed +15
-18
lines changed
8 files changed +15
-18
lines changed 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.48 "
15
+ rust-version = " 1.60 "
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.48 + and c++11 or newer* <br >
27
+ * Compiler support: requires rustc 1.60 + 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 @@ -21,19 +21,13 @@ fn main() {
21
21
}
22
22
23
23
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." ) ;
26
26
println ! (
27
27
"cargo:warning=You appear to be building with: {}" ,
28
28
rustc. version,
29
29
) ;
30
30
}
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
- }
37
31
}
38
32
}
39
33
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 = " 2018"
8
8
license = " MIT OR Apache-2.0"
9
9
repository = " https://github.com/dtolnay/cxx"
10
- rust-version = " 1.48 "
10
+ rust-version = " 1.60 "
11
11
12
12
[features ]
13
13
default = [] # c++11
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ homepage = "https://cxx.rs"
10
10
keywords = [" ffi" , " build-dependencies" ]
11
11
license = " MIT OR Apache-2.0"
12
12
repository = " https://github.com/dtolnay/cxx"
13
- rust-version = " 1.48 "
13
+ rust-version = " 1.60 "
14
14
15
15
[features ]
16
16
parallel = [" cc/parallel" ]
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ exclude = ["build.rs"]
9
9
keywords = [" ffi" ]
10
10
license = " MIT OR Apache-2.0"
11
11
repository = " https://github.com/dtolnay/cxx"
12
- rust-version = " 1.48 "
12
+ rust-version = " 1.60 "
13
13
14
14
[dependencies ]
15
15
codespan-reporting = " 0.11"
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.48 "
13
+ rust-version = " 1.60 "
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.48 + and c++11 or newer*<br>
21
+ //! *Compiler support: requires rustc 1.60 + and c++11 or newer*<br>
22
22
//! *[Release notes](https://github.com/dtolnay/cxx/releases)*
23
23
//!
24
24
//! <br>
365
365
366
366
#![ no_std]
367
367
#![ 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
+ ) ]
371
374
#![ cfg_attr( doc_cfg, feature( doc_cfg) ) ]
372
375
#![ allow( non_camel_case_types) ]
373
376
#![ allow(
You can’t perform that action at this time.
0 commit comments