forked from japaric/stm32f103xx-hal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
72 lines (56 loc) · 1.44 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
authors = ["Jorge Aparicio <jorge@japaric.io>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "HAL for the STM32F100xx family of microcontrollers"
keywords = ["arm", "cortex-m", "stm32", "hal"]
license = "MIT OR Apache-2.0"
name = "stm32f103xx-hal"
repository = "https://github.com/japaric/stm32f103xx-hal"
version = "0.1.0"
[dependencies]
stm32f103xx = "0.8.0"
cortex-m = "0.4.3"
nb = "0.1.1"
[dependencies.cast]
default-features = false
version = "0.2.2"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.1.0"
[dev-dependencies]
cortex-m-semihosting = "0.2.0"
cortex-m-rtfm = "0.3.1"
m = "0.1.1"
[dev-dependencies.byteorder]
default-features = false
version = "1.2.1"
[dev-dependencies.cobs]
default-features = false
version = "0.1.3"
[dev-dependencies.cortex-m-rt]
features = ["abort-on-panic"]
version = "0.3.12"
[dev-dependencies.crc16]
default-features = false
version = "0.3.4"
[dev-dependencies.either]
default-features = false
version = "1.4.0"
[dev-dependencies.motor-driver]
git = "https://github.com/japaric/motor-driver"
rev = "b1837d45a1acc3ccb024f11a7f0d8b9a02771462"
[dev-dependencies.mpu9250]
git = "https://github.com/japaric/mpu9250"
rev = "4cd19cc74d71de6f3edf532d53537ab67c70d514"
[dev-dependencies.stm32f103xx]
features = ["rt"]
version = "0.8.0"
[features]
doc = []
rt = ["stm32f103xx/rt"]
[profile.dev]
incremental = false
codegen-units = 1
[profile.release]
debug = true
lto = true