From d348ee65baada658c2064f74ed69f855f977461e Mon Sep 17 00:00:00 2001 From: Cosmic Horror Date: Tue, 22 Oct 2024 22:29:26 -0600 Subject: [PATCH] refactor: Update to 2021 edition --- Cargo.toml | 2 +- src/__private_tests/helpers.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b2727e1..d8f92c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "steamlocate" version = "2.0.0-beta.2" authors = ["William Venner "] -edition = "2018" +edition = "2021" repository = "https://github.com/WilliamVenner/steamlocate-rs" license = "MIT" description = "Rust Crate for locating Steam game installation directories (and Steam itself!)" diff --git a/src/__private_tests/helpers.rs b/src/__private_tests/helpers.rs index 460b3c0..590d477 100644 --- a/src/__private_tests/helpers.rs +++ b/src/__private_tests/helpers.rs @@ -2,7 +2,6 @@ use std::{ collections::BTreeMap, - convert::{TryFrom, TryInto}, fs, iter, path::{Path, PathBuf}, };