rustation/Cargo.toml
Lionel Flandrin 2d26e5fb60 Added savestate support by implementing Encodable/Decodable
Most of the codebase implements Encodable/Decodable now, with the
exception of the BIOS, CD image and gamepads. The BIOS checksum is
stored however, in order for the frontend to know which file to load.
2016-06-07 23:12:55 +02:00

28 lines
624 B
TOML

[package]
name = "rustation"
# Exported as VERSION and VERSION_CSTR in the library
version = "0.0.2"
authors = ["Lionel Flandrin <lionel.flandrin@gmail.com>"]
description = "A PlayStation emulator"
homepage = "https://github.com/simias/rustation"
repository = "https://github.com/simias/rustation"
documentation = "https://github.com/simias/rustation/wiki"
readme = "README.md"
license = "GPL-2.0+"
keywords = ["emulator", "playstation"]
[dependencies]
shaman = "0.1.0"
log = "0.3.4"
arrayvec = "0.3.15"
rustc-serialize = "0.3.19"
[lib]
name = "rustation"
crate-type = ["rlib"]
[dependencies.cdimage]
path = "cdimage"