-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (26 loc) · 888 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "space-invaders"
version = "1.1.0"
authors = ["Deokhwan Kim"]
description = "space-invaders is an emulator for the Space Invaders arcade machine."
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/dkim/space-invaders"
keywords = ["space-invaders", "opengl", "luminance"]
categories = ["emulators"]
edition = "2021"
[dependencies]
bitflags = "1.2.1"
clap = { version = "4.4.7", features = ["derive"] }
env_logger = "0.10.1"
glfw = "0.43.0"
i8080 = { git = "https://github.com/dkim/i8080", tag = "1.0.2" }
log = "0.4"
luminance = "=0.46.0"
luminance-derive = "0.9.0"
luminance-front = { version = "=0.6.0", default-features = false, features = ["gl33"] }
luminance-gl = "=0.19.0"
luminance-glfw = "=0.18.0"
luminance-std140 = "=0.2.0"
rodio = { version = "0.17.3", default-features = false, features = ["wav"] }
spin_sleep_util = "0.1.1"