2019-11-04 00:14:16 -08:00
|
|
|
[package]
|
|
|
|
name = "rustro"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["lifning <lifning+git@pm.me>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-11-16 21:34:01 -08:00
|
|
|
[build-dependencies]
|
|
|
|
cc = "^1"
|
|
|
|
|
2019-11-04 00:14:16 -08:00
|
|
|
[dependencies]
|
2019-11-11 23:46:53 -08:00
|
|
|
libretro-sys = "^0.1"
|
2019-11-04 00:14:16 -08:00
|
|
|
failure = "^0.1"
|
|
|
|
libloading = "^0.5"
|
2019-11-07 18:43:14 -08:00
|
|
|
num_enum = "^0.4"
|
2019-11-10 16:24:29 -08:00
|
|
|
structopt = "^0.3"
|
2019-11-15 23:03:30 -08:00
|
|
|
sdl2 = { version = "^0.32", optional = true }
|
|
|
|
crossbeam-channel = { version = "^0.4", optional = true }
|
2019-11-14 19:16:44 -08:00
|
|
|
|
2019-11-14 21:21:58 -08:00
|
|
|
[features]
|
2019-11-15 23:03:30 -08:00
|
|
|
with-sdl2 = ["sdl2", "crossbeam-channel"]
|
2019-11-14 21:21:58 -08:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "example"
|
|
|
|
path = "src/bin/example.rs"
|
|
|
|
required-features = ["with-sdl2"]
|