diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-11-02 00:17:00 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-02 12:47:00 +0530 |
| commit | ab7e80bde4513984046c093ed5eeb8c0640c4fe0 (patch) | |
| tree | e1551b8f7c16bbc777b9ba6391238224fd550de2 /runtime/Cargo.toml | |
| parent | 5e4e324ceb657772f98bfae3c797e7417acc9837 (diff) | |
chore(runtime): remove dependency on sys-info crate (#16441)
Fixes #9862
`loadavg`
| Target family | Syscall | Description |
| ------------- | ------- | ----------- |
| Linux | `sysinfo` | - |
| Windows | - | Returns `DEFAULT_LOADAVG`. There is no concept of
loadavg on Windows |
| macOS, BSD | `getloadavg` |
https://www.freebsd.org/cgi/man.cgi?query=getloadavg |
`os_release`
| Target family | Syscall | Description |
| ------------- | ------- | ----------- |
| Linux | `/proc/sys/kernel/osrelease` | - |
| Windows |
[`RtlGetVersion`](https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/nf-wdm-rtlgetversion)
| dwMajorVersion . dwMinorVersion . dwBuildNumber |
| macOS | `sysctl([CTL_KERN, KERN_OSRELEASE])` | - |
`hostname`
| Target family | Syscall | Description |
| ------------- | ------- | ----------- |
| Unix | `gethostname(sysconf(_SC_HOST_NAME_MAX))` | - |
| Windows | `GetHostNameW` | - |
`mem_info`
| Target family | Syscall | Description |
| ------------- | ------- | ----------- |
| Linux | sysinfo | - |
| Windows | `sysinfoapi::GlobalMemoryStatusEx` | - |
| macOS | <br> <pre> sysctl([CTL_HW, HW_MEMSIZE]); <br> sysctl([CTL_VM,
VM_SWAPUSAGE]); <br> host_statistics64(mach_host_self(), HOST_VM_INFO64)
</pre> | - |
Diffstat (limited to 'runtime/Cargo.toml')
| -rw-r--r-- | runtime/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 885766483..1926c34a3 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -86,7 +86,6 @@ regex = "1.6.0" ring = "0.16.20" serde = { version = "1.0.136", features = ["derive"] } signal-hook-registry = "1.4.0" -sys-info = "0.9.1" termcolor = "1.1.3" tokio = { version = "1.21", features = ["full"] } uuid = { version = "1.0.0", features = ["v4"] } @@ -94,6 +93,7 @@ uuid = { version = "1.0.0", features = ["v4"] } [target.'cfg(windows)'.dependencies] fwdansi = "1.1.0" winapi = { version = "0.3.9", features = ["commapi", "knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] } +ntapi = "0.4.0" [target.'cfg(unix)'.dependencies] nix = "=0.24.2" |
