From d7a319d967322dac057aa8933094d34d5bfec00c Mon Sep 17 00:00:00 2001 From: fanninpm <27117322+fanninpm@users.noreply.github.com> Date: Wed, 29 Apr 2026 05:14:51 -0400 Subject: [PATCH] Move dependency to workspace for `host_env` crate (#7719) * Add dependency from `host_env` crate to main workspace * Declare dependency as workspace = true --- Cargo.toml | 1 + crates/host_env/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 290060fb5..8000a2781 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" diff --git a/crates/host_env/Cargo.toml b/crates/host_env/Cargo.toml index e826a8baa..039c92586 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 }