2021-09-13 12:35:40 +00:00
|
|
|
[package]
|
2022-06-18 00:15:48 +00:00
|
|
|
edition = "2021"
|
2021-09-13 12:35:40 +00:00
|
|
|
name = "embassy-wasm-example"
|
|
|
|
version = "0.1.0"
|
2022-10-07 10:41:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-09-13 12:35:40 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-29 10:09:55 +00:00
|
|
|
embassy-sync = { version = "0.6.0", path = "../../embassy-sync", features = ["log"] }
|
2024-08-02 19:50:18 +00:00
|
|
|
embassy-executor = { version = "0.6.0", path = "../../embassy-executor", features = ["arch-wasm", "executor-thread", "log", "integrated-timers"] }
|
2024-08-02 17:20:26 +00:00
|
|
|
embassy-time = { version = "0.3.2", path = "../../embassy-time", features = ["log", "wasm", ] }
|
2021-09-13 12:35:40 +00:00
|
|
|
|
|
|
|
wasm-logger = "0.2.0"
|
|
|
|
wasm-bindgen = "0.2"
|
|
|
|
web-sys = { version = "0.3", features = ["Document", "Element", "HtmlElement", "Node", "Window" ] }
|
|
|
|
log = "0.4.11"
|
2023-07-27 01:32:40 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = 2
|