-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.38 KB
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
50
[package]
authors = [
"Jonathan Pallant <jonathan.pallant@ferrous-systems.com>",
"The Embedded Devices Working Group Arm Team <arm@teams.rust-embedded.org>"
]
categories = [
"embedded",
"no-std",
]
description = "Run-time support for Arm AArch32"
edition = "2021"
keywords = [
"arm",
"aarch32",
"embedded",
"no-std",
"run-time",
]
license = "MIT OR Apache-2.0"
name = "aarch32-rt"
readme = "README.md"
repository = "https://github.com/rust-embedded/aarch32.git"
rust-version = "1.83"
version = "0.2.0"
[dependencies]
aarch32-cpu = { version = "0.2.0", path = "../aarch32-cpu" }
aarch32-rt-macros = { path = "../aarch32-rt-macros", version = "=0.2.0" }
[features]
# Enable the FPU on start-up, even on a soft-float EABI target
eabi-fpu = []
# Make the interrupt context store routines save the upper double-precision
# registers. If your program is using all 32 double-precision registers (e.g.
# if you have set the `+d32` target feature) then you need to enable this
# option otherwise important FPU state may be lost when an exception occurs.
fpu-d32 = []
[build-dependencies]
arm-targets = { version = "0.4.0", path = "../arm-targets" }
[package.metadata.docs.rs]
# This is a list of supported Tier 2 targets, as of latest stable
targets = [
"armv7r-none-eabihf",
"armv7r-none-eabi",
"armv7a-none-eabihf",
"armv7a-none-eabi",
"armv8r-none-eabihf"
]