-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (25 loc) · 1009 Bytes
/
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
[package]
name = "test-esp-sound"
version = "0.1.0"
edition = "2021"
authors = ["David Cuthbert <[email protected]>"]
homepage = "https://github.com/dacut/test-esp-sound"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/dacut/test-esp-sound"
[patch.crates-io]
embedded-svc = { git = "https://github.com/esp-rs/embedded-svc.git" }
esp-idf-hal = { git = "https://github.com/dacut/esp-idf-hal", branch = "i2s" }
esp-idf-sys = { git = "https://github.com/esp-rs/esp-idf-sys", branch = "master" }
esp-idf-svc = { git = "https://github.com/esp-rs/esp-idf-svc", branch = "master" }
[dependencies]
esp-idf-hal = { version = "0.40.1" }
esp-idf-sys = { version = "0.32.1", default-features = false, features = ["std", "binstart", "native"] }
esp-idf-svc = { version = "0.45.0" }
log = { version = "0.4", default-features = false }
[profile.dev]
debug = true
opt-level = "z"
[build-dependencies]
embuild = { git = "https://github.com/esp-rs/embuild.git", features = ["elf"] }
anyhow = "1"