Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/stdx/Cargo.toml')
| -rw-r--r-- | crates/stdx/Cargo.toml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/crates/stdx/Cargo.toml b/crates/stdx/Cargo.toml index 3727d0c956..7bda106764 100644 --- a/crates/stdx/Cargo.toml +++ b/crates/stdx/Cargo.toml @@ -12,14 +12,16 @@ rust-version.workspace = true [lib] [dependencies] -backtrace = { version = "0.3.67", optional = true } -jod-thread = "0.1.2" -libc.workspace = true +backtrace = { version = "0.3.74", optional = true } +jod-thread = "1.0.0" crossbeam-channel.workspace = true itertools.workspace = true tracing.workspace = true # Think twice before adding anything here +[target.'cfg(unix)'.dependencies] +libc.workspace = true + [target.'cfg(windows)'.dependencies] miow = "0.6.0" windows-sys = { version = "0.59", features = ["Win32_Foundation"] } |