18 lines
532 B
TOML
18 lines
532 B
TOML
[package]
|
|
name = "trevors_chip8_toy"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
trevors_chip8_core = { path = "../chip8_core" }
|
|
easy-imgui-sys = { version = "=0.6.0" }
|
|
easy-imgui = { version = "=0.6.0" }
|
|
easy-imgui-renderer = { version = "=0.6.0" }
|
|
easy-imgui-window = { version = "0.6.0" }
|
|
log ="0.4"
|
|
glutin = "0.32"
|
|
glutin-winit = { version = "0.5", optional = true }
|
|
raw-window-handle = "0.6"
|
|
arboard = { version = "3", optional = true, default-features = false }
|
|
winit = { version = "0.30", features = ["x11", "mint"] }
|