diff --git a/Cargo.toml b/Cargo.toml index 0276231..3023899 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ name = "loom" # - Update CHANGELOG.md # - Create git tag version = "0.7.2" -edition = "2018" +edition = "2021" license = "MIT" authors = ["Carl Lerche "] description = "Permutation testing for concurrent code" diff --git a/src/rt/execution.rs b/src/rt/execution.rs index f9f6e39..60e541f 100644 --- a/src/rt/execution.rs +++ b/src/rt/execution.rs @@ -2,7 +2,6 @@ use crate::rt::alloc::Allocation; use crate::rt::{lazy_static, object, thread, Path}; use std::collections::HashMap; -use std::convert::TryInto; use std::fmt; use tracing::info;