forked from uutils/platform-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (19 loc) · 778 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "platform-info"
version = "2.0.1"
authors = ["Alex Lyon <[email protected]>"]
edition = "2018"
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"
# spell-checker:ignore (crates) libc winapi (features) libloaderapi processthreadsapi sysinfoapi winbase winver
[target.'cfg(not(target_os = "windows"))'.dependencies]
libc = "0.2"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["libloaderapi", "processthreadsapi", "sysinfoapi", "winbase", "winver"] }
[dev-dependencies]
regex = "1"