parent
8d1f0cc603
commit
4712ff5619
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,5 +1,15 @@
|
|||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
|
# Version 0.28.1
|
||||||
|
|
||||||
|
## Fixed 🐛
|
||||||
|
|
||||||
|
- Fix broken build on linux when using `use-dev-tty` with (#906)
|
||||||
|
|
||||||
|
## Breaking ⚠️
|
||||||
|
|
||||||
|
- Fix desync with mio and signalhook between repo and published crate. (upgrade to mio 1.0)
|
||||||
|
|
||||||
# Version 0.28
|
# Version 0.28
|
||||||
|
|
||||||
## Added ⭐
|
## Added ⭐
|
||||||
|
@ -82,9 +82,9 @@ rustix = { version = "0.38.34", default-features = false, features = [
|
|||||||
] }
|
] }
|
||||||
signal-hook = { version = "0.3.17", optional = true }
|
signal-hook = { version = "0.3.17", optional = true }
|
||||||
filedescriptor = { version = "0.8", optional = true }
|
filedescriptor = { version = "0.8", optional = true }
|
||||||
mio = { version = "0.8", features = ["os-poll"], optional = true }
|
mio = { version = "1.0", features = ["os-poll"], optional = true }
|
||||||
signal-hook-mio = { version = "0.2.3", features = [
|
signal-hook-mio = { version = "0.2.4", features = [
|
||||||
"support-v0_8",
|
"support-v1_0",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use std::{collections::VecDeque, io, time::Duration};
|
use std::{collections::VecDeque, io, time::Duration};
|
||||||
|
|
||||||
use mio::{unix::SourceFd, Events, Interest, Poll, Token};
|
use mio::{unix::SourceFd, Events, Interest, Poll, Token};
|
||||||
use signal_hook_mio::v0_8::Signals;
|
use signal_hook_mio::v1_0::Signals;
|
||||||
|
|
||||||
#[cfg(feature = "event-stream")]
|
#[cfg(feature = "event-stream")]
|
||||||
use crate::event::sys::Waker;
|
use crate::event::sys::Waker;
|
||||||
|
Loading…
Reference in New Issue
Block a user