From d4d31ad06544154395aae2fc57d9f85f94c6a3b5 Mon Sep 17 00:00:00 2001 From: Per Lindgren <per.lindgren@ltu.se> Date: Fri, 30 Oct 2020 16:36:12 +0100 Subject: [PATCH] llvm_asm (compatibility) --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 087dec5..dc79d2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["pln <Per Lindgren>"] edition = "2018" [dependencies] -cstr_core = "0.1.2" +cstr_core = "0.2.2" [features] inline-asm = [] diff --git a/src/lib.rs b/src/lib.rs index ddf1d7b..6ece7c1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,7 +14,7 @@ //! TODO: better documentation (as always) #![no_std] -#![cfg_attr(feature = "inline-asm", feature(asm))] +#![cfg_attr(feature = "inline-asm", feature(llvm_asm))] // re-exports for klee-analysis #[cfg(feature = "klee-analysis")] -- GitLab