-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 781 Bytes
/
Copy pathCargo.toml
File metadata and controls
44 lines (37 loc) · 781 Bytes
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
[package]
name = "tms570"
version = "0.1.0"
authors = ["Paolo Teti <paolo.teti@gmail.com>"]
description = "Board Support Package for TI Cortex-R4F/R5F TMS570"
build = "build.rs"
edition = "2018"
[profile.dev]
panic = "abort"
incremental = false
lto = true
opt-level = 1
debug = true
debug-assertions = true
[profile.release]
panic = "abort"
incremental = false
lto = true
codegen-units = 1
debug = false
debug-assertions = false
[dependencies]
cortexr4 = { path = "arch/cortex-r4" }
siliconcr4 = { git = "https://github.com/paoloteti/silicon-cr4.git" }
vcell = "0.1.2"
r0 = "1.0.0"
[profile.dev.package.vcell]
opt-level = 3
debug = false
[build-dependencies]
cc = "1.0"
[features]
default = ["errata57", "errata66"]
errata57 = []
errata66 = []
pbist_rom = []
pbist_ram = []