ferretro/Cargo.toml

26 lines
560 B
TOML
Raw Normal View History

2019-11-04 09:14:16 +01:00
[package]
2019-11-24 05:18:31 +01:00
name = "ferretro"
2019-11-04 09:14:16 +01:00
version = "0.1.0"
2019-11-24 05:18:31 +01:00
authors = ["lifning <lifning+git@pm.me>", "viv <vvnl+git@protonmail.com>", "iliana <iliana@buttslol.net>"]
2019-11-04 09:14:16 +01:00
edition = "2018"
2019-11-17 06:34:01 +01:00
[build-dependencies]
cc = "^1"
2019-11-04 09:14:16 +01:00
[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-16 08:03:30 +01:00
sdl2 = { version = "^0.32", optional = true }
crossbeam-channel = { version = "^0.4", optional = true }
2019-11-15 04:16:44 +01:00
2019-11-15 06:21:58 +01:00
[features]
2019-11-16 08:03:30 +01:00
with-sdl2 = ["sdl2", "crossbeam-channel"]
2019-11-15 06:21:58 +01:00
[[bin]]
name = "example"
path = "src/bin/example.rs"
required-features = ["with-sdl2"]