2015-11-23 04:55:38 +11:00
|
|
|
[package]
|
|
|
|
name = "minifb"
|
2016-01-05 07:14:06 +11:00
|
|
|
version = "0.2.3"
|
2016-01-03 08:01:09 +11:00
|
|
|
license = "MIT"
|
2015-11-23 04:55:38 +11:00
|
|
|
authors = ["Daniel Collin <daniel@collin.com>"]
|
2016-01-02 21:59:59 +11:00
|
|
|
description = "Cross-platform window setup for bitmap rendering"
|
|
|
|
keywords = ["windowing", "framebuffer"]
|
|
|
|
repository = "https://github.com/emoon/rust_minifb"
|
2016-01-04 01:30:33 +11:00
|
|
|
homepage = "https://github.com/emoon/rust_minifb"
|
2016-01-03 07:42:50 +11:00
|
|
|
documentation = "http://prodbg.com/minifb/minifb/index.html"
|
2015-11-23 04:55:38 +11:00
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
gcc = "0.3.19"
|
|
|
|
|
|
|
|
[dependencies]
|
2015-12-19 06:21:47 +11:00
|
|
|
libc = "0.2"
|
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"
|
|
|
|
kernel32-sys = "0.1.4"
|
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"
|
|
|
|
kernel32-sys = "0.1.4"
|
|
|
|
gdi32-sys = "0.1.1"
|
|
|
|
|
|
|
|
[target.i686-pc-windows-msvc.dependencies]
|
|
|
|
user32-sys = "0.1.2"
|
|
|
|
winapi = "0.2.4"
|
|
|
|
kernel32-sys = "0.1.4"
|
|
|
|
gdi32-sys = "0.1.1"
|
|
|
|
|
|
|
|
[target.i686-pc-windows-gnu.dependencies]
|
|
|
|
user32-sys = "0.1.2"
|
|
|
|
winapi = "0.2.4"
|
|
|
|
kernel32-sys = "0.1.4"
|
|
|
|
gdi32-sys = "0.1.1"
|
|
|
|
|
|
|
|
[target.i686-unknown-linux-gnu.dependencies]
|
|
|
|
x11-dl = "~2.2"
|
|
|
|
|
|
|
|
[target.x86_64-unknown-linux-gnu.dependencies]
|
|
|
|
x11-dl = "~2.2"
|
|
|
|
|
|
|
|
[target.arm-unknown-linux-gnueabihf.dependencies]
|
|
|
|
x11-dl = "~2.2"
|
|
|
|
|
|
|
|
[target.aarch64-unknown-linux-gnu.dependencies]
|
|
|
|
x11-dl = "~2.2"
|
|
|
|
|
|
|
|
[target.x86_64-unknown-dragonfly.dependencies]
|
|
|
|
x11-dl = "~2.2"
|
|
|
|
|
|
|
|
[target.x86_64-unknown-freebsd.dependencies]
|
|
|
|
x11-dl = "~2.2"
|