forked from esp32framework/esp32framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.29 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 = "esp32framework"
version = "0.1.0"
authors = [
"Juan Pablo Aschieri <[email protected]>",
"Mateo Godoy Dupont <[email protected]>",
"Diego Emanuel Civini <[email protected]>",
"Joaquin Rivero <[email protected]>"
]
edition = "2021"
resolver = "2"
rust-version = "1.71"
[profile.release]
opt-level = "s"
[profile.dev]
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"
[features]
default = ["std", "embassy", "esp-idf-svc/native"]
pio = ["esp-idf-svc/pio"]
std = ["alloc", "esp-idf-svc/binstart", "esp-idf-svc/std"]
alloc = ["esp-idf-svc/alloc"]
nightly = ["esp-idf-svc/nightly"]
experimental = ["esp-idf-svc/experimental"]
embassy = ["esp-idf-svc/embassy-sync", "esp-idf-svc/critical-section", "esp-idf-svc/embassy-time-driver"]
[dependencies]
log = { version = "0.4", default-features = false }
esp-idf-svc = { version = "0.49.1", default-features = false }
esp32-nimble = {version = "0.7.0"}
sharable_reference_macro = { path = "./sharable_reference_macro" }
esp32_testing_macro = { path = "./esp32_testing_macro" }
uuid = { version = "1.10.0", features = ["v3"] }
bstr = { version = "1.8.0", default-features = false }
futures = "0.3"
[build-dependencies]
embuild = { version = "0.31.3", features = ["espidf"] }
cc = "=1.1.31"