-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
46 lines (37 loc) · 944 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
42
43
44
45
46
[package]
authors = ["Matt Vertescher <[email protected]>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "HAL for the psoc6 family of microcontrollers"
documentation = "https://docs.rs/psoc6-hal"
edition = "2018"
license = "MIT OR Apache-2.0"
name = "psoc6-hal"
readme = "README.md"
repository = "https://github.com/psoc-rs/psoc6-hal"
version = "0.1.0"
[package.metadata.docs.rs]
features = ["rt"]
[dependencies]
cortex-m = "0.6.1"
cortex-m-rt = "0.6.11"
[dependencies.cast]
default-features = false
version = "0.2.3"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2.3"
[dependencies.psoc6-pac]
git = "https://github.com/psoc-rs/psoc6-pac.git"
[dev-dependencies]
cortex-m-semihosting = "0.3.5"
panic-halt = "0.2.0"
panic-semihosting = "0.5.2"
[features]
rt = ["psoc6-pac/rt"]
[profile.dev]
incremental = false
codegen-units = 1
[profile.release]
codegen-units = 1
debug = true
lto = true