Files
nes-emu/Cargo.toml
Matthew Pomes b9a30c286a
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 10s
Partial audio implementation
2026-03-14 21:19:16 -05:00

21 lines
766 B
TOML

[package]
name = "nes-emu"
version = "0.1.0"
edition = "2024"
[dependencies]
bitfield = "0.19.3"
# iced = { version = "0.14.0", features = ["debug", "canvas", "tokio", "lazy", "image", "advanced"] }
iced = { path = "../iced", features = ["debug", "canvas", "tokio", "lazy", "image", "advanced"] }
iced_core = { path = "../iced/core", features = ["advanced"] }
rfd = "0.17.2"
# iced_graphics = { version = "0.14.0", features = ["geometry", "image"] }
# iced_widget = { version = "0.13.4", features = ["canvas", "image"] }
thiserror = "2.0.17"
tokio = { version = "1.48.0", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["ansi", "chrono", "env-filter", "json", "serde"] }
bytes = "*"
cpal = "0.17.1"
ringbuf = "0.4.8"