-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (43 loc) · 1.87 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
[workspace]
resolver = "2"
members = [
"rued-esp32",
]
# exclude = []
[patch.crates-io]
embedded-hal = { git = "https://github.com/rust-embedded/embedded-hal" }
# embedded-svc = { git = "https://github.com/esp-rs/embedded-svc" }
# esp-idf-hal = { git = "https://github.com/esp-rs/esp-idf-hal" }
# esp-idf-svc = { git = "https://github.com/esp-rs/esp-idf-svc" }
# edge-frame = { git = "https://github.com/ivmarkov/edge-frame" }
embedded-io = { git = "https://github.com/ivmarkov/embedded-io" }
shared-bus = { git = "https://github.com/taks/shared-bus", branch = "embedded-hal-1.0.0-alpha.9" }
#socket2 = { git = "https://github.com/esp-rs-compat/socket2" }
#polling = { git = "https://github.com/esp-rs-compat/polling" }
#embedded-svc = { path = "../embedded-svc" }
#esp-idf-sys = { path = "../esp-idf-sys" }
#esp-idf-hal = { path = "../esp-idf-hal" }
#esp-idf-svc = { path = "../esp-idf-svc" }
#edge-frame = { path = "../edge-frame/edge-frame" }
#edge-executor = { path = "../edge-executor" }
# embedded-svc = { git = "https://github.com/esp-rs/embedded-svc" }
# esp-idf-hal = { git = "https://github.com/esp-rs/esp-idf-hal" }
# esp-idf-svc = { git = "https://github.com/esp-rs/esp-idf-svc" }
# edge-frame = { git = "https://github.com/ivmarkov/edge-frame" }
# embedded-io = { git = "https://github.com/ivmarkov/embedded-io" }
#[patch.'https://github.com/esp-rs/embedded-svc']
#embedded-svc = { path = "../embedded-svc" }
#[patch.'https://github.com/esp-rs/esp-idf-hal']
#esp-idf-hal = { path = "../esp-idf-hal" }
#[patch.'https://github.com/esp-rs/esp-idf-svc']
#esp-idf-svc = { path = "../esp-idf-svc" }
#[patch.'https://github.com/ivmarkov/edge-frame']
#edge-frame = { path = "../edge-frame/edge-frame" }
#[patch.'https://github.com/ivmarkov/embassy']
#embassy-time = { path = "../embassy/embassy-time" }
[profile.release]
debug = true
opt-level = "s"
[profile.dev]
debug = true
opt-level = "z"