mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 11:54:02 +01:00
b2b4562376
Bumps [windows](https://github.com/microsoft/windows-rs) from 0.52.0 to 0.54.0. <details> <summary>Commits</summary> <ul> <li><a href="148f4ebdda
"><code>148f4eb</code></a> Release 0.54.0 (<a href="https://redirect.github.com/microsoft/windows-rs/issues/2894">#2894</a>)</li> <li><a href="380df19277
"><code>380df19</code></a> Support additional <code>VARIANT</code> types (<a href="https://redirect.github.com/microsoft/windows-rs/issues/2892">#2892</a>)</li> <li><a href="cf65494df9
"><code>cf65494</code></a> Avoid <code>Result</code> transformation for <code>WIN32_ERROR</code> (<a href="https://redirect.github.com/microsoft/windows-rs/issues/2890">#2890</a>)</li> <li><a href="77dc028222
"><code>77dc028</code></a> Workaround for confusing <code>LocalFree</code> behavior (<a href="https://redirect.github.com/microsoft/windows-rs/issues/2889">#2889</a>)</li> <li><a href="3807aba28c
"><code>3807aba</code></a> Add natural error translation for RPC (<a href="https://redirect.github.com/microsoft/windows-rs/issues/2883">#2883</a>)</li> <li><a href="2c2d78448a
"><code>2c2d784</code></a> Limit web workflow to Microsoft organization (<a href="https://redirect.github.com/microsoft/windows-rs/issues/2874">#2874</a>)</li> <li><a href="ef8246578f
"><code>ef82465</code></a> Update internal references to the current master version (<a href="https://redirect.github.com/microsoft/windows-rs/issues/2872">#2872</a>)</li> <li><a href="8fd448ba93
"><code>8fd448b</code></a> Fix <code>windows-targets</code> semver linker path compatibility (<a href="https://redirect.github.com/microsoft/windows-rs/issues/2870">#2870</a>)</li> <li><a href="c5511e7cc1
"><code>c5511e7</code></a> Update readme link</li> <li><a href="428a7ca2e6
"><code>428a7ca</code></a> Fix for <code>windows-targets::link</code> doc compatibility (<a href="https://redirect.github.com/microsoft/windows-rs/issues/2868">#2868</a>)</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/windows-rs/compare/0.52.0...0.54.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=windows&package-manager=cargo&previous-version=0.52.0&new-version=0.54.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
authors = ["The Nushell Project Developers", "procs creators"]
|
|
description = "Nushell system querying"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-system"
|
|
name = "nu-system"
|
|
version = "0.91.1"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
log = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
|
nix = { workspace = true, default-features = false, features = ["fs", "term", "process", "signal"] }
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
|
|
procfs = "0.16"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
libproc = "0.14"
|
|
mach2 = "0.4"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
chrono = { workspace = true, default-features = false, features = ["clock"] }
|
|
ntapi = "0.4"
|
|
once_cell = { workspace = true }
|
|
windows = { version = "0.54", features = [
|
|
"Wdk_System_SystemServices",
|
|
"Wdk_System_Threading",
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Diagnostics_Debug",
|
|
"Win32_System_Diagnostics_ToolHelp",
|
|
"Win32_System_Kernel",
|
|
"Win32_System_Memory",
|
|
"Win32_System_ProcessStatus",
|
|
"Win32_System_SystemInformation",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_Shell",
|
|
]}
|