From a9750c7fec924db6a20fc87fa90269cdecbe75bd Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Sat, 25 Mar 2023 16:02:01 -0700 Subject: upgrade all Cargo.toml files to edition=2021 The MSRV is already 1.60, so this doesn't affect much. The only impact to other code is that we no longer need to explicitly import TryInto. --- reference_impl/Cargo.toml | 2 +- reference_impl/reference_impl.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'reference_impl') diff --git a/reference_impl/Cargo.toml b/reference_impl/Cargo.toml index 8c81e5a..e269fe9 100644 --- a/reference_impl/Cargo.toml +++ b/reference_impl/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "reference_impl" version = "0.0.0" -edition = "2018" +edition = "2021" [lib] name = "reference_impl" diff --git a/reference_impl/reference_impl.rs b/reference_impl/reference_impl.rs index 83ac795..72ad525 100644 --- a/reference_impl/reference_impl.rs +++ b/reference_impl/reference_impl.rs @@ -18,7 +18,6 @@ //! ``` use core::cmp::min; -use core::convert::TryInto; const OUT_LEN: usize = 32; const KEY_LEN: usize = 32; -- cgit v1.2.3