Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 61153ac

Browse files
committed
Require Rust 1.64
1 parent f27c1fe commit 61153ac

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ jobs:
2626
- uses: actions-rs/toolchain@v1
2727
with:
2828
profile: minimal
29-
# This should follow 1.64 as it progresses throgh beta to stable
30-
toolchain: nightly
29+
toolchain: stable
3130
target: thumbv7em-none-eabi
3231
override: true
3332
- uses: actions-rs/cargo@v1

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ license = "MIT"
88
keywords = ["macro", "cstr"]
99
readme = "README.md"
1010
edition = "2018"
11+
rust-version = "1.64"
1112

1213
[lib]
1314
proc-macro = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A macro for getting `&'static CStr` from literal or identifier.
1111
This macro checks whether the given literal is valid for `CStr`
1212
at compile time, and returns a static reference of `CStr`.
1313

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.
1515

1616
## Example
1717

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! This macro checks whether the given literal is valid for `CStr`
44
//! at compile time, and returns a static reference of `CStr`.
55
//!
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.
77
//!
88
//! ## Example
99
//!

0 commit comments

Comments
 (0)