forked from hackndev/zinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (41 loc) · 1.02 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
[package]
name = "zinc"
version = "0.1.0"
authors = ["Zinc Developers <zinc@github.com>"]
build = "build.rs"
[lib]
name = "zinc"
crate-type = ["lib"]
[features]
test = ["volatile_cell/replayer"]
cpu_cortex-m0 = []
cpu_cortex-m3 = []
cpu_cortex-m4 = []
mcu_lpc11xx = ["cpu_cortex-m0"]
mcu_lpc17xx = ["cpu_cortex-m3"]
mcu_stm32f4 = ["cpu_cortex-m4"]
mcu_stm32l1 = ["cpu_cortex-m3"]
mcu_k20 = ["cpu_cortex-m4"]
mcu_tiva_c = ["cpu_cortex-m4"]
multitasking = ["cpu_cortex-m4"]
[target.thumbv6m-none-eabi.dependencies]
rust-libcore = "*"
[target.thumbv7m-none-eabi.dependencies]
rust-libcore = "*"
[target.thumbv7em-none-eabi.dependencies]
rust-libcore = "*"
[dependencies.ioreg]
path = "./ioreg"
[dependencies.volatile_cell]
path = "./volatile_cell"
[dependencies.rlibc]
git = "https://github.com/hackndev/rlibc"
branch = "zinc"
[dev-dependencies]
expectest = "*"
[dev-dependencies.platformtree]
path = "./platformtree"
[dev-dependencies.macro_platformtree]
path = "./macro_platformtree"
[dev-dependencies.macro_zinc]
path = "./macro_zinc"