Move dependency to workspace for host_env crate (#7719)

* Add dependency from `host_env` crate to main workspace

* Declare dependency as workspace = true
This commit is contained in:
fanninpm
2026-04-29 05:14:51 -04:00
committed by GitHub
parent 330b18f2fe
commit d7a319d967
2 changed files with 2 additions and 1 deletions

View File

@@ -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"

View File

@@ -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 }