ferretro/Cargo.toml

22 lines
410 B
TOML
Raw Normal View History

2019-11-04 09:14:16 +01:00
[package]
name = "rustro"
version = "0.1.0"
authors = ["lifning <lifning+git@pm.me>"]
edition = "2018"
[dependencies]
libretro-sys = "^0.1"
2019-11-04 09:14:16 +01:00
failure = "^0.1"
libloading = "^0.5"
num_enum = "^0.4"
structopt = "^0.3"
2019-11-15 10:15:51 +01:00
sdl2 = { version = "*", optional = true, features = ["unsafe_textures"] }
2019-11-15 04:16:44 +01:00
2019-11-15 06:21:58 +01:00
[features]
with-sdl2 = ["sdl2"]
[[bin]]
name = "example"
path = "src/bin/example.rs"
required-features = ["with-sdl2"]