-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (50 loc) · 1.4 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
[package]
name = "embassy-rp-pico"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cortex-m = { version = "0.7.6", features = ["inline-asm"] }
cortex-m-rt = "0.7.0"
cyw43 = { version = "0.1.0", features = ["defmt"] }
cyw43-pio = { version = "0.1.0", features = ["defmt", "overclock"] }
defmt = "0.3.6"
defmt-rtt = "0.4.0"
embassy-embedded-hal = { version = "0.1.0", features = ["defmt"] }
embassy-executor = { version = "0.5.0", features = [
"task-arena-size-32768",
"arch-cortex-m",
"executor-thread",
"executor-interrupt",
"defmt",
"integrated-timers",
] }
embassy-futures = "0.1.1"
embassy-net = { version = "0.4.0", features = [
"defmt",
"tcp",
"udp",
"dhcpv4",
] }
embassy-net-wiznet = { version = "0.1.0", features = ["defmt"] }
embassy-rp = { version = "0.1.0", features = [
"defmt",
"unstable-pac",
"time-driver",
"critical-section-impl",
] }
embassy-time = "0.3.0"
embassy-usb = { version = "0.1.0", features = ["defmt"] }
embassy-usb-logger = "0.1.0"
embedded-io-async = { version = "0.6.1", features = ["defmt-03"] }
fixed = "1.25.1"
fixed-macro = "1.2.0"
futures = { version = "0.3.30", default-features = false, features = [
"async-await",
"cfg-target-has-atomic",
"unstable",
] }
log = "0.4.20"
panic-probe = { version = "0.3.1", features = ["print-defmt"] }
[profile.release]
debug = 2