2015-11-23 04:55:38 +11:00
|
|
|
[package]
|
|
|
|
name = "minifb"
|
2018-05-05 23:21:46 +10:00
|
|
|
version = "0.10.5"
|
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"
|
2018-05-05 23:21:46 +10:00
|
|
|
documentation = "https://docs.rs/minifb/0.10.5/minifb"
|
2015-11-23 04:55:38 +11:00
|
|
|
build = "build.rs"
|
2017-10-02 00:48:57 +11:00
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[badges]
|
2017-10-02 00:54:00 +11:00
|
|
|
appveyor = { repository = "emoon/rust-minifb" }
|
|
|
|
travis-ci = { repository = "emoon/rust_minifb" }
|
2015-11-23 04:55:38 +11:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
gcc = "0.3.19"
|
|
|
|
|
|
|
|
[dependencies]
|
2016-01-02 21:59:59 +11:00
|
|
|
time = "0.1.34"
|
|
|
|
|
|
|
|
[target.x86_64-pc-windows-msvc.dependencies]
|
2015-11-25 07:46:52 +11:00
|
|
|
user32-sys = "0.1.2"
|
2015-11-28 07:25:50 +11:00
|
|
|
winapi = "0.2.4"
|
2018-01-08 22:26:06 +11:00
|
|
|
kernel32-sys = "0.2.2"
|
2015-11-28 09:42:28 +11:00
|
|
|
gdi32-sys = "0.1.1"
|
2016-01-02 21:59:59 +11:00
|
|
|
|
|
|
|
[target.x86_64-pc-windows-gnu.dependencies]
|
|
|
|
user32-sys = "0.1.2"
|
|
|
|
winapi = "0.2.4"
|
2018-01-08 22:26:06 +11:00
|
|
|
kernel32-sys = "0.2.2"
|
2016-01-02 21:59:59 +11:00
|
|
|
gdi32-sys = "0.1.1"
|
|
|
|
|
|
|
|
[target.i686-pc-windows-msvc.dependencies]
|
|
|
|
user32-sys = "0.1.2"
|
|
|
|
winapi = "0.2.4"
|
2018-01-08 22:26:06 +11:00
|
|
|
kernel32-sys = "0.2.2"
|
2016-01-02 21:59:59 +11:00
|
|
|
gdi32-sys = "0.1.1"
|
|
|
|
|
|
|
|
[target.i686-pc-windows-gnu.dependencies]
|
|
|
|
user32-sys = "0.1.2"
|
|
|
|
winapi = "0.2.4"
|
2018-01-08 22:26:06 +11:00
|
|
|
kernel32-sys = "0.2.2"
|
2016-01-02 21:59:59 +11:00
|
|
|
gdi32-sys = "0.1.1"
|
|
|
|
|
|
|
|
[target.i686-unknown-linux-gnu.dependencies]
|
2017-08-01 00:14:19 +10:00
|
|
|
x11-dl = "~2.14"
|
2016-01-02 21:59:59 +11:00
|
|
|
|
|
|
|
[target.x86_64-unknown-linux-gnu.dependencies]
|
2017-08-01 00:14:19 +10:00
|
|
|
x11-dl = "~2.14"
|
2016-01-02 21:59:59 +11:00
|
|
|
|
|
|
|
[target.arm-unknown-linux-gnueabihf.dependencies]
|
2017-08-01 00:14:19 +10:00
|
|
|
x11-dl = "~2.14"
|
2016-01-02 21:59:59 +11:00
|
|
|
|
|
|
|
[target.aarch64-unknown-linux-gnu.dependencies]
|
2017-08-01 00:14:19 +10:00
|
|
|
x11-dl = "~2.14"
|
2016-01-02 21:59:59 +11:00
|
|
|
|
|
|
|
[target.x86_64-unknown-dragonfly.dependencies]
|
2017-08-01 00:14:19 +10:00
|
|
|
x11-dl = "~2.14"
|
2016-01-02 21:59:59 +11:00
|
|
|
|
|
|
|
[target.x86_64-unknown-freebsd.dependencies]
|
2017-08-01 00:14:19 +10:00
|
|
|
x11-dl = "~2.14"
|
2017-04-24 17:09:05 +10:00
|
|
|
|
|
|
|
[target.x86_64-unknown-redox.dependencies]
|
|
|
|
orbclient = "0.3.4"
|