From e980bfc940b972bf9de5161c9fd1570cbb1bc0a8 Mon Sep 17 00:00:00 2001 From: ice_iix Date: Fri, 18 Jun 2021 14:14:32 -0700 Subject: [PATCH] Cargo.toml: use new resolver = 2 https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html#cargos-new-feature-resolver In my testing, the target release binary is 136 bytes smaller (insignificant). --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 6741efa..ad69773 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ name = "stevenarella" version = "0.0.1" authors = [ "Thinkofdeath ", "iceiix " ] edition = "2018" +resolver = "2" description = "Multi-protocol multi-platform Minecraft-compatible client" repository = "https://github.com/iceiix/stevenarella" license = "MIT/Apache-2.0"