22 lines
410 B
TOML
22 lines
410 B
TOML
[package]
|
|
name = "rustro"
|
|
version = "0.1.0"
|
|
authors = ["lifning <lifning+git@pm.me>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
libretro-sys = "^0.1"
|
|
failure = "^0.1"
|
|
libloading = "^0.5"
|
|
num_enum = "^0.4"
|
|
structopt = "^0.3"
|
|
sdl2 = { version = "*", optional = true, features = ["unsafe_textures"] }
|
|
|
|
[features]
|
|
with-sdl2 = ["sdl2"]
|
|
|
|
[[bin]]
|
|
name = "example"
|
|
path = "src/bin/example.rs"
|
|
required-features = ["with-sdl2"]
|