[package]
edition = "2024"
name = "yo-esp"
version = "0.1.7"
authors = ["QuackHack-McBlindy"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = " yo-esp is a bare‑metal, no_std audio streaming client for the yo voice assistant. It provides everything needed to capture microphone audio, stream it to a backend server, receive and play back TTS/audio, and react to server‑side wake‑word detection, speech‑to‑text, intent recognition and command execution."
readme = "README.md"
keywords = [
"no-std",
"esp-hal",
"embedded",
"audio",
"esp32",
]
categories = [
"embedded",
"no-std",
"development-tools",
"network-programming",
]
license = "MIT"
repository = "https://github.com/QuackHack-McBlindy/yo-esp"
[features]
sounds = []
[lib]
name = "yo_esp"
crate-type = ["lib"]
path = "src/lib.rs"
[dependencies.defmt]
version = "1.0.0"
[dependencies.embassy-executor]
version = "0.10.0"
[dependencies.embassy-futures]
version = "0.1.0"
[dependencies.embassy-net]
version = "0.9.0"
features = [
"tcp",
"proto-ipv4",
"medium-ethernet",
]
[dependencies.embassy-sync]
version = "0.8.0"
[dependencies.embassy-time]
version = "0.5.0"
[dependencies.esp-hal]
version = "1.1.0"
features = [
"esp32s3",
"unstable",
]
[dependencies.libm]
version = "0.2"