-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 868 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 868 Bytes
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
[package]
name = "aarch64-cpu"
version = "11.2.0"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
description = "Low level access to processors using the AArch64 execution state"
homepage = "https://github.com/rust-embedded/aarch64-cpu"
repository = "https://github.com/rust-embedded/aarch64-cpu"
readme = "README.md"
keywords = ["arm", "aarch64", "cpu", "register"]
categories = ["embedded", "hardware-support", "no-std"]
license = "MIT/Apache-2.0"
edition = "2018"
exclude = [
".github",
".gitignore",
".rustfmt.toml",
".vscode",
".editorconfig",
"Makefile",
]
[dependencies]
tock-registers = { version = "0.10.0", default-features = false } # Use it as interface-only library.
critical-section = { version = "1.2.0", features = ["restore-state-u8"], optional = true }
[features]
critical-section-single-core = ["critical-section"]