-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 997 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
25
26
27
28
29
30
31
32
33
[package]
name = "raw-cpuid"
version = "9.0.0"
authors = ["Gerd Zellweger <[email protected]>"]
edition = "2018"
description = "A library to parse the x86 CPUID instruction, written in rust with no external dependencies. The implementation closely resembles the Intel CPUID manual description. The library does only depend on libcore."
homepage = "https://github.com/gz/rust-cpuid"
repository = "https://github.com/gz/rust-cpuid"
documentation = "https://docs.rs/raw-cpuid/"
readme = "README.md"
keywords = ["cpuid", "x86", "amd64", "os", "libcore"]
license = "MIT"
exclude = ["/ci"]
rust = "1.26"
[[bin]]
name = "cpuid"
path = "src/bin/cpuid.rs"
[features]
serialize = ["serde", "serde_derive"]
[dependencies]
bitflags = "1.2"
serde = { version = "1.0", default-features = false, optional = true }
serde_derive = {version = "1.0", optional = true }
[target.'cfg(unix)'.dev-dependencies]
libc = { version = "0.2", default-features = false }
core_affinity = "0.5.10"
rustversion = "1.0"