blob: 251549e9374764b5548c01aa4221943e45115ea0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[package]
name = "chippy"
version = "0.1.0"
license = "MPL-2.0"
edition = "2021"
description = "Yet another Chip 8 Emulator"
readme = "README.md"
homepage = "https://github.com/aadityadhruv/chip-8"
repository = "https://github.com/aadityadhruv/chip-8"
keywords = ["emulator", "games", "graphics", "assembly"]
categories = ["emulators"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sdl2 = "0.35.2"
rand = "0.8.5"
|