Files
platform-info/Cargo.toml
T

33 lines
922 B
TOML
Raw Normal View History

[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"
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]
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",
] }
[dev-dependencies]
regex = "1.10.4"