From df88090a5dc742aa7c17ae77ad15b396c8217e3e Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Thu, 2 May 2024 19:55:52 +0100 Subject: [PATCH] Update to Rust's 2021 edition This means that the winapi sub-dependency is built with fewer features. --- Cargo.toml | 2 +- ffi/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 566657e..89bc04e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "loot-condition-interpreter" version = "3.1.0" authors = ["Oliver Hamlet "] license = "MIT" -edition = "2018" +edition = "2021" [dependencies] crc32fast = "1.2.0" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 948ccd3..78d0dbb 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -3,7 +3,7 @@ name = "loot-condition-interpreter-ffi" version = "3.1.0" authors = ["Oliver Hamlet "] license = "MIT" -edition = "2018" +edition = "2021" [dependencies] loot-condition-interpreter = { path = ".." }