-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.61 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
[package]
name = "junctor"
version = "0.1.0"
authors = ["Ana Hobden <[email protected]>"]
edition = "2018"
description = "Nothing quite yet!"
license = "MIT"
repository = "github.com/Hoverbear-Consulting/junctor"
homepage = "junctor.radio"
build = "build.rs"
[dependencies]
cortex-m = { version = "0.6.0", default-features = false }
cortex-m-rt = { version = "0.6.10", default-features = false }
alloc-cortex-m = { version = "0.4.0", default-features = false }
cortex-m-rtic = { version = "0.5.5", default-features = false }
rtt-target = { version = "0.2.0", default-features = false, features = ["cortex-m"] }
nrf52840-pac = { version = "0.9.0", default-features = false, features = ["rt"] }
nrf52840-hal = { version = "0.11.0", default-features = false, features = ["rt"] }
once_cell = { version = "1.4.0", default-features = false }
tracing = { git = "https://github.com/Hoverbear-Consulting/tracing", branch = "tracing-serde-no-std", version = "0.1", default-features = false, features = ["attributes"] }
tracing-serde = { git = "https://github.com/Hoverbear-Consulting/tracing", branch = "tracing-serde-no-std", version = "0.1", default-features = false }
serde_json = { version = "1", default-features = false, features = ["alloc"] }
indexmap = { version = "1.5.1", default-features = false }
fnv = { version = "1.0.7", default-features = false }
[profile.dev]
codegen-units = 1
debug = 1
debug-assertions = true # !
incremental = false
lto = "fat"
opt-level = 'z' # !
overflow-checks = false
[profile.release]
codegen-units = 1
debug = 1
debug-assertions = false
incremental = false
lto = "fat"
opt-level = 3
overflow-checks = false