Skip to content

Commit d7a319d

Browse files
authored
Move dependency to workspace for host_env crate (RustPython#7719)
* Add dependency from `host_env` crate to main workspace * Declare dependency as workspace = true
1 parent 330b18f commit d7a319d

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ strum_macros = "0.28"
224224
syn = "2"
225225
syn-ext = "0.5.0"
226226
textwrap = { version = "0.16.2", default-features = false }
227+
termios = "0.3.3"
227228
thiserror = "2.0"
228229
icu_properties = "2"
229230
icu_normalizer = "2"

crates/host_env/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ num-traits = { workspace = true }
1818
nix = { workspace = true }
1919

2020
[target.'cfg(all(unix, not(target_os = "ios"), not(target_os = "redox")))'.dependencies]
21-
termios = "0.3.3"
21+
termios = { workspace = true }
2222

2323
[target.'cfg(windows)'.dependencies]
2424
widestring = { workspace = true }

0 commit comments

Comments
 (0)