forked from riskable/rp2040-tickv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (52 loc) · 1.15 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
[package]
name = "rp2040-tickv"
version = "0.1.0"
edition = "2021"
description = "TicKV implementation for RP2040 hardware"
license = "Apache-2.0"
readme = "README.md"
categories = ["embedded", "no-std"]
keywords = ["rp2040", "pico"]
exclude = [
".gitignore",
"target/*"
]
[dependencies]
cortex-m = "0.7"
rp2040-hal = "0.7.0"
embedded-hal ="0.2"
tickv = "1.0.0"
[dev-dependencies]
cortex-m = {version = "0.7", features = ["critical-section-single-core"]}
cortex-m-rt = "0.7"
rp2040-hal = { version="0.7.0", features=["rt"] }
embedded-hal = { version = "0.2", features = ["unproven"] }
defmt = "0.3"
defmt-rtt = "0.4.0"
panic-probe = { version = "0.3", features = ["print-defmt"] }
rp2040-boot2 = "0.2"
siphasher = "0.3"
[dev-profile.dev]
codegen-units = 1
debug = 2
debug-assertions = true
incremental = false
lto = 'fat'
opt-level = 1
overflow-checks = true
[dev-profile.release]
codegen-units = 1
debug = 2
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 3
overflow-checks = false
[profile.release]
codegen-units = 1
debug = 2
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 2
overflow-checks = false