aboutsummaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/atuin-hex/Cargo.toml4
-rw-r--r--crates/atuin-hex/src/lib.rs6
2 files changed, 5 insertions, 5 deletions
diff --git a/crates/atuin-hex/Cargo.toml b/crates/atuin-hex/Cargo.toml
index 9625f67d..85ed8f14 100644
--- a/crates/atuin-hex/Cargo.toml
+++ b/crates/atuin-hex/Cargo.toml
@@ -13,9 +13,9 @@ repository = { workspace = true }
[dependencies]
clap = { workspace = true }
-[target.'cfg(all(unix, not(target_os = "illumos")))'.dependencies]
+# [target.'cfg(all(unix, not(target_os = "illumos")))'.dependencies]
crossterm = { workspace = true }
eyre = { workspace = true }
-portable-pty = "0.8"
+portable-pty = "0.9"
signal-hook = "0.3"
vt100 = { workspace = true }
diff --git a/crates/atuin-hex/src/lib.rs b/crates/atuin-hex/src/lib.rs
index f449a386..75ec895f 100644
--- a/crates/atuin-hex/src/lib.rs
+++ b/crates/atuin-hex/src/lib.rs
@@ -151,15 +151,15 @@ end
}
}
-#[cfg(any(not(unix), target_os = "illumos"))]
+#[cfg(not(unix))]
mod app {
pub(crate) fn main() {
- eprintln!("atuin hex currently supports unix platforms excluding illumos");
+ eprintln!("atuin hex currently supports unix platforms");
std::process::exit(1);
}
}
-#[cfg(all(unix, not(target_os = "illumos")))]
+#[cfg(unix)]
mod app {
use std::io::{Read, Write};
use std::os::unix::net::UnixListener;