Skip to content

Commit bf80a9c

Browse files
authored
Migrate to Rust 2021 (#365)
1 parent be150d6 commit bf80a9c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "loom"
77
# - Update CHANGELOG.md
88
# - Create git tag
99
version = "0.7.2"
10-
edition = "2018"
10+
edition = "2021"
1111
license = "MIT"
1212
authors = ["Carl Lerche <[email protected]>"]
1313
description = "Permutation testing for concurrent code"

src/rt/execution.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use crate::rt::alloc::Allocation;
22
use crate::rt::{lazy_static, object, thread, Path};
33

44
use std::collections::HashMap;
5-
use std::convert::TryInto;
65
use std::fmt;
76

87
use tracing::info;

0 commit comments

Comments
 (0)