-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 937 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
[package]
authors = ["Jonathan Klimt <jonathan.klimt@rwth-aachen.de>"]
description = "Unified virtual and physical address types for the Hermit ecosystem and beyond"
documentation = "https://docs.rs/memory_addresses"
keywords = ["amd64", "x86", "x86_64", "aarch64", "no_std"]
categories = ["no-std", "os", "no-std::no-alloc", "memory-management"]
license = "MIT/Apache-2.0"
name = "memory_addresses"
readme = "README.md"
repository = "https://github.com/hermit-os/memory-addresses"
version = "0.2.2"
edition = "2021"
[dependencies]
align-address = "0.3.0"
cfg-if = "1.0.0"
paste = "1.0.15"
x86 = { version = "0.52.0", default-features = false, optional = true }
x86_64 = { version = "0.15.1", default-features = false, optional = true }
[features]
default = ["x86_64", "aarch64", "riscv64"]
x86_64 = ["dep:x86_64"]
aarch64 = []
riscv64 = []
conversions = ["conv-x86", "conv-x86_64"]
conv-x86 = ["dep:x86"]
conv-x86_64 = ["dep:x86_64"]