diff options
author | 2023-11-01 20:41:28 +0100 | |
---|---|---|
committer | 2023-11-01 19:52:57 +0000 | |
commit | 3c9a8f290d0615dd88c4f9a6e7660bdc7ce6fc9f (patch) | |
tree | f4fc4ff33f2477d76f13747f6041f870b9db84bb /xtask/src/main.rs | |
parent | 52aa56e265f62252ce0eefeebcf100fdfd7be8c6 (diff) | |
download | rtic-3c9a8f290d0615dd88c4f9a6e7660bdc7ce6fc9f.tar.gz rtic-3c9a8f290d0615dd88c4f9a6e7660bdc7ce6fc9f.tar.zst rtic-3c9a8f290d0615dd88c4f9a6e7660bdc7ce6fc9f.zip |
Fix CI with async_fn_in_trait not being a feature
Diffstat (limited to '')
-rw-r--r-- | xtask/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 30c3da05..90ba13fb 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -23,7 +23,7 @@ pub struct Target<'a> { } impl<'a> Target<'a> { - const DEFAULT_FEATURES: &str = "test-critical-section"; + const DEFAULT_FEATURES: &'static str = "test-critical-section"; pub const fn new(triple: &'a str, has_std: bool) -> Self { Self { triple, has_std } |