Skip to content

Commit b15be53

Browse files
committed
Fix UB from miri in drop - update to latest crossbeam to resolve
1 parent a0c2c46 commit b15be53

File tree

5 files changed

+46
-413
lines changed

5 files changed

+46
-413
lines changed

Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "concread"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
authors = ["William Brown <william@blackhats.net.au>"]
55

66
description = "Concurrently Readable Data-Structures for Rust"
@@ -11,16 +11,15 @@ readme = "README.md"
1111
keywords = ["data-structures", "concread", "concurrency", "parallel",]
1212
categories = ["data-structures", "memory-management",]
1313
license = "MPL-2.0"
14-
license-file = "LICENSE.md"
1514

1615
[dependencies]
17-
crossbeam-epoch = "0.5"
18-
crossbeam-utils = "0.5"
19-
parking_lot = "0.6"
16+
crossbeam-epoch = "0.8"
17+
crossbeam-utils = "0.7"
18+
parking_lot = "0.10"
2019
num = "0.2.0"
2120

2221
[dev-dependencies]
23-
time = "0.1"
22+
time = "0.2"
2423
rand = "0.7"
2524

2625
[[bin]]

0 commit comments

Comments
 (0)