-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (28 loc) · 1.05 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
[package]
authors = ["The rp-rs Developers"]
description = "A Peripheral Access Crate for the Raspberry Pi RP235x microcontrollers"
edition = "2021"
homepage = "https://github.com/rp-rs/rp235x-pac"
license = "BSD-3-Clause"
name = "rp235x-pac"
repository = "https://github.com/rp-rs/rp235x-pac"
version = "0.1.0"
[package.metadata.docs.rs]
features = ["rt"]
targets = ["thumbv8m.main-none-eabihf", "riscv32imac-unknown-none-elf"]
# DO NOT include arch-specific crates here.
[dependencies]
# Non-optional dependencies. Keep these sorted by name.
vcell = "0.1.3"
# Optional dependencies. Keep these sorted by name.
critical-section = {optional = true, version = "1.0.0"}
# These dependencies only apply in Arm mode.
[target.'thumbv8m.main-none-eabihf'.dependencies]
# Non-optional dependencies. Keep these sorted by name.
cortex-m = "0.7.3"
# Optional dependencies. Keep these sorted by name.
cortex-m-rt = {version = ">=0.6.15,<0.8", optional = true}
[features]
rt = ["cortex-m-rt", "cortex-m-rt/device"]
[package.metadata.cargo-udeps.ignore]
normal = ["cortex-m-rt"]