mirror of
https://github.com/JanNeuendorf/SVC16.git
synced 2025-06-03 01:50:18 +00:00
23 lines
633 B
TOML
23 lines
633 B
TOML
[package]
|
|
name = "svc16"
|
|
version = "0.7.2"
|
|
edition = "2021"
|
|
authors = ["Jan Neuendorf"]
|
|
description = "An emulator for a simple virtual computer"
|
|
license="MIT"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.93"
|
|
clap = { version = "4.5.21", features = ["derive"] }
|
|
gilrs = { version = "0.11.0",optional=true}
|
|
# There seems to be some incompatibility with the latest crates.io version of pixels?
|
|
pixels = { git = "https://github.com/parasyte/pixels.git", rev = "d4df286"}
|
|
thiserror = "2.0.3"
|
|
winit = "0.29.15"
|
|
winit-input-map = {version="0.4.1",optional=true}
|
|
winit_input_helper = "0.16.0"
|
|
|
|
[features]
|
|
default=[]
|
|
gamepad = ["gilrs","winit-input-map"]
|