forked from rust-osdev/x86_64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (45 loc) · 1.38 KB
/
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
40
41
42
43
44
45
46
47
48
49
[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.14.10"
edition = "2018"
rust-version = "1.57" # Needed to support panic! in const fns
[dependencies]
bit_field = "0.10.1"
bitflags = "1.0.4"
volatile = "0.4.4"
rustversion = "1.0.5"
[features]
default = ["nightly", "instructions"]
instructions = []
nightly = ["const_fn", "step_trait", "abi_x86_interrupt", "doc_cfg"]
abi_x86_interrupt = []
const_fn = []
step_trait = []
doc_cfg = []
# These features are no longer used and only there for backwards compatibility.
external_asm = []
inline_asm = []
[package.metadata.release]
dev-version = false
pre-release-replacements = [
{ file = "Changelog.md", search = "# Unreleased", replace = "# Unreleased\n\n# {{version}} – {{date}}", exactly = 1 },
]
pre-release-commit-message = "Bump version to {{version}}"
push = false
publish = false
tag = false