-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.39 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
[package]
name = "firefly-hal"
version = "0.1.0"
rust-version = "1.82.0"
edition = "2021"
[dependencies]
postcard = "1.1.1"
wasmi = { version = "0.40.0", default-features = false }
# hosted
[target.'cfg(not(target_os = "none"))'.dependencies]
embedded-io = { version = "0.6.1", features = ["std"] }
gilrs = "0.11.0"
rodio = { version = "0.20.1", default-features = false }
hound = "3.5.1"
rand = "0.9.0"
# web
[target.'cfg(target_family = "wasm")'.dependencies]
embedded-io = { version = "0.6.1", features = ["std"] }
gilrs = "0.11.0"
rust-embed = { version = "8.0.0", features = ["debug-embed"] }
vfs = { version = "0.12.0", features = ["embedded-fs"] }
wasm-bindgen = "0.2.93"
web-sys = { version = "0.3.69", features = ["Window", "Performance"] }
# embedded
[target.'cfg(target_os = "none")'.dependencies]
embedded-hal-bus = { version = "0.3.0", default-features = false }
embedded-io = { version = "0.6.1", default-features = false }
# A temporary fork of the latest dev version of embedded-sdmmc.
# We'll switch to upstream when they push to crate the version >0.8.1.
embedded_sdmmc = { version = "0.8.2", default-features = false, package = "embedded-sdmmc-dev" }
esp-hal = { version = "0.23.1", git = "https://github.com/esp-rs/esp-hal.git", features = [
"esp32s3",
] }
esp-println = { version = "0.13.1", features = ["esp32s3"] }
firefly-types = { version = "0.5.0" }
embedded-hal = { version = "1.0.0" }