mirror of
https://github.com/simias/rustation.git
synced 2025-04-02 10:52:36 -04:00
35 lines
815 B
TOML
35 lines
815 B
TOML
[package]
|
|
|
|
name = "rustation"
|
|
|
|
# Should match the latest git tag! This version info is used to set
|
|
# the internal `VERSION` string if "git describe" is unavailable.
|
|
version = "0.0.3"
|
|
|
|
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"]
|
|
build = "build.rs"
|
|
|
|
[features]
|
|
trace = [ "lazy_static" ]
|
|
|
|
[dependencies]
|
|
|
|
shaman = "0.1.0"
|
|
log = "0.3.4"
|
|
arrayvec = "0.3.15"
|
|
rustc-serialize = "0.3.19"
|
|
lazy_static = { version = "0.2.1", optional = true }
|
|
|
|
[lib]
|
|
name = "rustation"
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies.cdimage]
|
|
path = "cdimage"
|