forked from rust-osdev/x86_64
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (36 loc) · 863 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
34
35
36
37
38
39
[package]
authors = [
"Gerd Zellweger <[email protected]>",
"Eric Kidd <[email protected]>",
"Philipp Oppermann <[email protected]>",
"Dan Schatzberg <[email protected]>",
"John Ericson <[email protected]>",
"Rex Lunae <[email protected]>",
]
description = "Support for x86_64 specific instructions, registers, and structures."
documentation = "https://docs.rs/x86_64"
keywords = [
"amd64",
"x86",
"x86_64",
"no_std",
]
categories = [
"no-std",
]
license = "MIT/Apache-2.0"
name = "x86_64"
readme = "README.md"
repository = "https://github.com/rust-osdev/x86_64"
version = "0.3.4"
[dependencies]
bit_field = "0.9.0"
bitflags = "1.0.1"
usize_conversions = "0.2.0"
os_bootinfo = "0.2.0"
array-init = "0.0.4"
[dependencies.ux]
default-features = false
version = "0.1.0"
[features]
deny-warnings = []