2018-03-06 11:17:38 -08:00
|
|
|
[package]
|
|
|
|
|
name = "platform-info"
|
2026-05-05 19:38:20 +02:00
|
|
|
version = "2.1.1"
|
2024-04-09 23:12:47 +02:00
|
|
|
authors = ["uutils developers"]
|
2021-11-28 13:56:09 +01:00
|
|
|
edition = "2018"
|
2026-03-30 17:33:53 +02:00
|
|
|
rust-version = "1.65.0"
|
2018-07-27 15:31:47 -07:00
|
|
|
description = "A simple cross-platform interface to get info about a system"
|
|
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/platform-info"
|
|
|
|
|
repository = "https://github.com/uutils/platform-info"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
keywords = ["platform", "info", "system"]
|
|
|
|
|
categories = ["os"]
|
|
|
|
|
license = "MIT"
|
|
|
|
|
|
2026-03-30 17:43:43 +02:00
|
|
|
# spell-checker:ignore (crates) libc (features) libloaderapi processthreadsapi sysinfoapi winbase winver
|
2023-05-28 22:04:27 -05:00
|
|
|
|
2022-08-19 08:41:26 +03:00
|
|
|
[target.'cfg(not(target_os = "windows"))'.dependencies]
|
2024-05-01 09:37:05 +00:00
|
|
|
libc = "0.2.154"
|
2022-08-19 08:41:26 +03:00
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2026-03-31 08:07:29 +02:00
|
|
|
windows-sys = { version = "0.61", features = [
|
2026-03-30 17:43:43 +02:00
|
|
|
"Win32_Foundation",
|
|
|
|
|
"Win32_Storage_FileSystem",
|
|
|
|
|
"Win32_System_LibraryLoader",
|
|
|
|
|
"Win32_System_SystemInformation",
|
|
|
|
|
"Win32_System_SystemServices",
|
|
|
|
|
"Win32_System_Threading",
|
|
|
|
|
] }
|
2023-01-14 23:14:07 -06:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-05-01 11:28:37 +00:00
|
|
|
regex = "1.10.4"
|