blob: 914e038950cddf64b209fbb33b8ff1ff696424d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "emulator"
version = "0.1.0"
edition = "2021"
authors = ["Astatin <astatin@redacted>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rodio = { version = "0.21", default-features = false, features = ["playback"] }
cpal = "0.16"
gilrs = "0.10.2"
clap = { version = "4.3.21", features = ["derive"] }
pixels = "0.15"
winit = "0.29"
winit_input_helper = "0.15"
[profile.dev]
overflow-checks = false
|