This repository was archived by the owner on Mar 23, 2024. It is now read-only.
File tree 4 files changed +4
-4
lines changed 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 26
26
- uses : actions-rs/toolchain@v1
27
27
with :
28
28
profile : minimal
29
- # This should follow 1.64 as it progresses throgh beta to stable
30
- toolchain : nightly
29
+ toolchain : stable
31
30
target : thumbv7em-none-eabi
32
31
override : true
33
32
- uses : actions-rs/cargo@v1
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ license = "MIT"
8
8
keywords = [" macro" , " cstr" ]
9
9
readme = " README.md"
10
10
edition = " 2018"
11
+ rust-version = " 1.64"
11
12
12
13
[lib ]
13
14
proc-macro = true
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ A macro for getting `&'static CStr` from literal or identifier.
11
11
This macro checks whether the given literal is valid for ` CStr `
12
12
at compile time, and returns a static reference of ` CStr ` .
13
13
14
- This macro can be used to to initialize constants on Rust 1.59 and above.
14
+ This macro can be used to to initialize constants on Rust 1.64 and above.
15
15
16
16
## Example
17
17
Original file line number Diff line number Diff line change 3
3
//! This macro checks whether the given literal is valid for `CStr`
4
4
//! at compile time, and returns a static reference of `CStr`.
5
5
//!
6
- //! This macro can be used to to initialize constants on Rust 1.59 and above.
6
+ //! This macro can be used to to initialize constants on Rust 1.64 and above.
7
7
//!
8
8
//! ## Example
9
9
//!
You can’t perform that action at this time.
0 commit comments