From de0fde9040da1049e7cd3df44112e344e24c6e6b Mon Sep 17 00:00:00 2001 From: iTitus Date: Mon, 11 Mar 2024 15:47:06 +0100 Subject: [PATCH] Update x86_64 dependency to version 0.15.0 This raises the MSRV to 1.59.0. --- Cargo.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2745c6b..66ecd52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,11 +12,13 @@ license = "Apache-2.0/MIT" [features] default = ["nightly"] -nightly = ["x86_64/inline_asm"] -stable = ["x86_64/external_asm"] + +# These features are currently unused +nightly = [] +stable = [] [dependencies] -x86_64 = { version = "0.14.2", default-features = false, features = [ +x86_64 = { version = "0.15.0", default-features = false, features = [ "instructions", ] }