forked from gz/rust-cpuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (25 loc) · 828 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
[package]
name = "raw-cpuid"
version = "4.0.0"
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
build = "build.rs"
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"
[[bin]]
name = "cpuid"
path = "src/bin/cpuid.rs"
[dependencies]
bitflags = "1.0"
serde = { version = "1.0", default-features = false }
serde_derive = "1.0"
[dev-dependencies]
serde_json = "1.0"
[build-dependencies]
cc = "1"
[features]
nightly = []