Skip to content

Commit d2df07f

Browse files
authored
fix: move socket2/all feature gate from compio-net to compio-driver (compio-rs#415)
1 parent 4f01a04 commit d2df07f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

compio-driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ compio-log = { workspace = true }
3636
cfg-if = { workspace = true }
3737
crossbeam-channel = { workspace = true }
3838
futures-util = { workspace = true }
39-
socket2 = { workspace = true }
39+
socket2 = { workspace = true, features = ["all"] }
4040

4141
# Windows specific dependencies
4242
[target.'cfg(windows)'.dependencies]

compio-net/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ compio-runtime = { workspace = true, features = ["event"] }
2424
cfg-if = { workspace = true }
2525
either = "1.9.0"
2626
once_cell = { workspace = true }
27-
socket2 = { workspace = true, features = ["all"] }
27+
socket2 = { workspace = true }
2828

2929
[target.'cfg(windows)'.dependencies]
3030
widestring = { workspace = true }

0 commit comments

Comments
 (0)