ferretro/Cargo.toml

26 lines
493 B
TOML
Raw Normal View History

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]
libretro-sys = "^0.1"
2019-11-04 00:14:16 -08:00
failure = "^0.1"
libloading = "^0.5"
num_enum = "^0.4"
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"]