-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 733 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (31 loc) · 733 Bytes
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
[package]
edition = "2024"
name = "embedded-wasm-blinky"
version = "0.1.0"
license = "MIT"
[dependencies]
cortex-m = "0.7"
cortex-m-rt = "0.7"
critical-section = "1.2"
embedded-hal = "1.0.0"
embedded-alloc = "0.7"
fugit = "0.3"
nb = "1.1"
wasmtime = { version = "43", default-features = false, features = [
"runtime",
"pulley",
"component-model",
] }
[target."thumbv8m.main-none-eabihf".dependencies]
rp235x-hal = { version = "0.3", features = ["rt", "critical-section-impl"] }
[build-dependencies]
wasmtime = { version = "43", default-features = false, features = [
"cranelift",
"pulley",
"all-arch",
"component-model",
] }
wit-component = "0.245"
[profile.debuggable]
inherits = "release"
debug = 2