Skip to content

Commit dec9a37

Browse files
authored
feat: update thin-cell (#738)
1 parent 57f6ee6 commit dec9a37

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ windows-sys = "0.61.0"
7171
thiserror = "2.0.3"
7272
smallvec = "1.13.2"
7373
synchrony = "0.1.4"
74+
thin-cell = "0.2.0"
7475

7576
[profile.bench]
7677
debug = true

compio-driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ flume = { workspace = true, default-features = false }
2424
futures-util = { workspace = true }
2525
socket2 = { workspace = true, features = ["all"] }
2626
pin-project-lite = { workspace = true }
27-
thin-cell = { version = "0.1.1" }
27+
thin-cell = { workspace = true }
2828
smallvec = { workspace = true, optional = true, features = ["union"] }
2929
synchrony = { workspace = true, features = ["waker_slot"] }
3030
bitflags = { version = "2.11.0" }

compio-driver/src/key.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::{
1111
};
1212

1313
use compio_buf::BufResult;
14-
use thin_cell::{Ref, ThinCell};
14+
use thin_cell::unsync::{Ref, ThinCell};
1515

1616
use crate::{Extra, OpCode, PushEntry};
1717

0 commit comments

Comments
 (0)