2015-11-23 04:55:38 +11:00
|
|
|
[package]
|
|
|
|
name = "minifb"
|
2020-08-14 19:56:29 +10:00
|
|
|
version = "0.18.0"
|
2016-01-11 04:37:33 +11:00
|
|
|
license = "MIT/Apache-2.0"
|
2015-11-23 04:55:38 +11:00
|
|
|
authors = ["Daniel Collin <daniel@collin.com>"]
|
2016-02-01 04:34:05 +11:00
|
|
|
description = "Cross-platform window setup with optional bitmap rendering"
|
|
|
|
keywords = ["windowing", "window", "framebuffer"]
|
2017-10-02 00:48:57 +11:00
|
|
|
categories = ["rendering"]
|
2016-01-02 21:59:59 +11:00
|
|
|
repository = "https://github.com/emoon/rust_minifb"
|
2019-12-16 18:24:48 +11:00
|
|
|
documentation = "https://docs.rs/minifb/0.15/minifb"
|
2015-11-23 04:55:38 +11:00
|
|
|
build = "build.rs"
|
2019-12-31 05:34:27 +11:00
|
|
|
edition = "2018"
|
2017-10-02 00:48:57 +11:00
|
|
|
readme = "README.md"
|
|
|
|
|
2019-12-16 18:24:48 +11:00
|
|
|
exclude = [
|
|
|
|
"resources/"
|
|
|
|
]
|
|
|
|
|
2017-10-02 00:48:57 +11:00
|
|
|
[badges]
|
2019-12-16 18:24:48 +11:00
|
|
|
maintenance = {status = "actively-developed"}
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-03-02 18:54:20 +11:00
|
|
|
png = "0.16"
|
2015-11-23 04:55:38 +11:00
|
|
|
|
|
|
|
[build-dependencies]
|
2018-05-19 05:58:55 +10:00
|
|
|
cc = "1.0"
|
2015-11-23 04:55:38 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-03 01:51:46 +11:00
|
|
|
raw-window-handle = "0.3.3"
|
2016-01-02 21:59:59 +11:00
|
|
|
|
2019-03-21 19:55:06 +11:00
|
|
|
[target.'cfg(windows)'.dependencies.winapi]
|
|
|
|
version = "0.3"
|
|
|
|
features = [
|
|
|
|
"winuser",
|
|
|
|
"wingdi",
|
|
|
|
"libloaderapi",
|
|
|
|
"errhandlingapi"
|
|
|
|
]
|
2016-01-02 21:59:59 +11:00
|
|
|
|
2020-04-05 14:49:25 +10:00
|
|
|
[features]
|
|
|
|
default = ["wayland", "x11"]
|
2020-05-28 18:29:52 +10:00
|
|
|
x11 = ["x11-dl", "xkb", "xkbcommon-sys"]
|
2020-04-05 14:49:25 +10:00
|
|
|
wayland = ["wayland-client", "wayland-protocols", "wayland-cursor", "tempfile", "xkb", "xkbcommon-sys"]
|
|
|
|
|
|
|
|
[target.'cfg(not(any(target_os = "macos", target_os = "redox", windows)))'.dependencies]
|
2020-07-10 05:21:16 +10:00
|
|
|
wayland-client = {version = "0.27", optional = true}
|
|
|
|
wayland-protocols = { version = "0.27", features = ["client", "unstable_protocols"], optional = true }
|
|
|
|
wayland-cursor = {version = "0.27", optional = true}
|
2020-04-05 14:49:25 +10:00
|
|
|
tempfile = {version = "3.1.0", optional = true}
|
|
|
|
xkb = {version = "0.2.1", optional = true}
|
|
|
|
xkbcommon-sys = {version = "0.7", optional = true}
|
|
|
|
x11-dl = {version = "2.18.3", optional = true}
|
2017-04-24 17:09:05 +10:00
|
|
|
|
|
|
|
[target.x86_64-unknown-redox.dependencies]
|
2019-01-15 16:10:05 +11:00
|
|
|
orbclient = "0.3.20"
|