diff options
author | Christian Poveda <christian.poveda@ferrous-systems.com> | 2022-09-22 11:13:50 -0500 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2022-09-22 21:18:25 -1000 |
commit | 0f3b8a840c4456d1db6d005cfdf52c0f6b9dcd81 (patch) | |
tree | b1972c1d5880a8287d63824610f86f0a227b11a1 /src | |
parent | 995943ce06b0b8d59ceeb056844e474ee0ae644e (diff) |
update to rust 1.64
Diffstat (limited to 'src')
-rw-r--r-- | src/features.rs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/features.rs b/src/features.rs index f18ffa88..bb836ce8 100644 --- a/src/features.rs +++ b/src/features.rs @@ -127,10 +127,12 @@ macro_rules! rust_target_base { /// Rust stable 1.47 /// * `larger_arrays` ([Tracking issue](https://github.com/rust-lang/rust/pull/74060)) => Stable_1_47 => 1.47; + /// Rust stable 1.64 + /// * `core_ffi_c` ([Tracking issue](https://github.com/rust-lang/rust/issues/94501)) + => Stable_1_64 => 1.64; /// Nightly rust /// * `thiscall` calling convention ([Tracking issue](https://github.com/rust-lang/rust/issues/42202)) /// * `vectorcall` calling convention (no tracking issue) - /// * `core_ffi_c` ([Tracking issue](https://github.com/rust-lang/rust/issues/94501)) => Nightly => nightly; ); } @@ -234,10 +236,12 @@ rust_feature_def!( Stable_1_47 { => larger_arrays; } + Stable_1_64 { + => core_ffi_c; + } Nightly { => thiscall_abi; => vectorcall_abi; - => core_ffi_c; } ); |