chip8-emulator/Cargo.toml

12 lines
218 B
TOML
Raw Permalink Normal View History

2022-02-07 00:24:11 +00:00
[package]
name = "chip8-emulator"
2022-02-09 13:46:00 +00:00
description = "Emulateur de Chip8"
2022-02-07 00:24:11 +00:00
version = "0.1.0"
edition = "2021"
2022-02-09 21:44:01 +00:00
authors = ["rick G. <rick@gnous.eu>"]
2022-02-09 13:46:00 +00:00
license = "GPL-3.0-or-later"
2022-02-07 00:24:11 +00:00
[dependencies]
rand = "0.8.4"
2022-02-07 00:24:11 +00:00
sdl2 = "0.35.1"