From 61b3daac438d627bdd5dac1763e8dc5e70e917af Mon Sep 17 00:00:00 2001 From: Padraic Fanning <27117322+fanninpm@users.noreply.github.com> Date: Tue, 28 Apr 2026 18:11:10 -0400 Subject: [PATCH 1/2] Add dependency from `host_env` crate to main workspace --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 29a8e1f77a3..feffaf792f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -224,6 +224,7 @@ strum_macros = "0.28" syn = "2" syn-ext = "0.5.0" textwrap = { version = "0.16.2", default-features = false } +termios = "0.3.3" thiserror = "2.0" icu_properties = "2" icu_normalizer = "2" From 737118abf138eddde3534ff2dad86651d64deff4 Mon Sep 17 00:00:00 2001 From: Padraic Fanning <27117322+fanninpm@users.noreply.github.com> Date: Tue, 28 Apr 2026 18:11:38 -0400 Subject: [PATCH 2/2] Declare dependency as workspace = true --- crates/host_env/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/host_env/Cargo.toml b/crates/host_env/Cargo.toml index e826a8baaf4..039c925868c 100644 --- a/crates/host_env/Cargo.toml +++ b/crates/host_env/Cargo.toml @@ -18,7 +18,7 @@ num-traits = { workspace = true } nix = { workspace = true } [target.'cfg(all(unix, not(target_os = "ios"), not(target_os = "redox")))'.dependencies] -termios = "0.3.3" +termios = { workspace = true } [target.'cfg(windows)'.dependencies] widestring = { workspace = true }