-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (50 loc) · 2.89 KB
/
Cargo.toml
File metadata and controls
53 lines (50 loc) · 2.89 KB
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
[workspace]
members = [
"application",
"bootloader",
"xtask"
]
resolver = "2"
[workspace.dependencies]
cortex-m = { version = "0.7.7", features = ["inline-asm"] }
cortex-m-rt = "0.7.5"
critical-section = "1.2.0"
defmt = "1"
defmt-rtt = "1"
embassy-executor = { version = "0.10.0", features = ["platform-cortex-m", "executor-thread", "executor-interrupt", "nightly"] }
embassy-futures = "0.1.2"
embassy-rp = { version = "0.10.0", features = ["unstable-pac", "time-driver", "critical-section-impl", "rp2040"] }
embassy-sync = "0.8.0"
embassy-time = "0.5.0"
embassy-net = { version = "0.9.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "dns", "proto-ipv4"] }
embassy-boot-rp = { version = "0.10.0" }
embedded-hal = "1.0.0"
embedded-hal-async = "1.0.0"
embedded-io-async = { version = "0.7", features = ["defmt"] }
futures = { version = "0.3.31", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
heapless = { version = "0.8", features = ["portable-atomic-critical-section"] }
log = "0.4.28"
panic-probe = { version = "1.0.0", features = ["print-defmt"] }
portable-atomic = { version = "1.11.1", features = ["critical-section"] }
static_cell = "2.1.1"
picoserve = { version = "0.18", features = ["embassy", "defmt", "json"] }
ekv = { version = "1.0", features = ["defmt", "page-size-4096", "max-page-count-64", "erase-value-255", "max-key-size-64", "max-value-size-256", "max-chunk-size-512"] }
sha2 = { version = "0.10", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive"] }
[patch.crates-io]
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
embassy-boot = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
embassy-boot-rp = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
embassy-net-wiznet = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
embassy-embedded-hal = { git = "https://github.com/embassy-rs/embassy", rev = "400921c5fe6f3e6079eca06f0ee4a0d1be7bec29" }
[profile.release]
debug = true
incremental = false
codegen-units = 1
opt-level = "s"
lto = "fat"