nushell/crates/nu-system/Cargo.toml

48 lines
1.3 KiB
TOML
Raw Normal View History

[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"
2024-03-06 22:08:14 +00:00
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 }
Bump windows from 0.52.0 to 0.54.0 (#12037) Bumps [windows](https://github.com/microsoft/windows-rs) from 0.52.0 to 0.54.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/windows-rs/commit/148f4ebdda2a04ff8afb9a3493aaf53b552e67e6"><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="https://github.com/microsoft/windows-rs/commit/380df192776392359bef644d34c99d79f4754bbd"><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="https://github.com/microsoft/windows-rs/commit/cf65494df937ba6c44a4c409d90f40d9f2ebd40a"><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="https://github.com/microsoft/windows-rs/commit/77dc02822232af9ca42fe856eb74d5f246053d8a"><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="https://github.com/microsoft/windows-rs/commit/3807aba28cb1a480b096f88d3b107f94e8de39e7"><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="https://github.com/microsoft/windows-rs/commit/2c2d78448a7e818b8d6c39673bced599320d1577"><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="https://github.com/microsoft/windows-rs/commit/ef8246578fd6bd34da6f156e2f4d5b0e8d5aadc2"><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="https://github.com/microsoft/windows-rs/commit/8fd448ba934d3be486df25a582e75a8923b96528"><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="https://github.com/microsoft/windows-rs/commit/c5511e7cc13f48432a3439c259f2932e0066f1de"><code>c5511e7</code></a> Update readme link</li> <li><a href="https://github.com/microsoft/windows-rs/commit/428a7ca2e6870f0973a9c00642d59d3e4ef8bfc3"><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>
2024-03-08 00:36:28 +00:00
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",
]}