-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
41 lines (33 loc) · 862 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
40
41
[package]
authors = ["iximeow <[email protected]>"]
description = "memory-mapped registers for amd64"
edition = "2018"
keywords = ["amd64", "emulation", "disassembly"]
license = "0BSD"
name = "regmap"
readme = "README.md"
repository = "https://www.github.com/iximeow/regmap/"
version = "0.1.0"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[lib]
name = "regmap"
path = "src/lib.rs"
crate_type = ["rlib"]
[workspace]
members = [
"staticlib",
]
[dependencies]
yaxpeax-x86 = { version = "0.1.5", default-features = false }
yaxpeax-arch = { version = "0.0.4", default-features = false, features = [] }
libc = { version = "0.2.0", default-features = false, features = [] }
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[features]
default = ["std"]
# have to conditionally include panic_handler for no_std builds
std = []