mirror of
https://github.com/italicsjenga/rust_minifb.git
synced 2024-12-23 19:31:30 +11:00
59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[package]
|
|
name = "minifb"
|
|
version = "0.2.0"
|
|
authors = ["Daniel Collin <daniel@collin.com>"]
|
|
description = "Cross-platform window setup for bitmap rendering"
|
|
keywords = ["windowing", "framebuffer"]
|
|
repository = "https://github.com/emoon/rust_minifb"
|
|
documentation = "http://prodbg.com/minifb/minifb/index.html"
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
gcc = "0.3.19"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
time = "0.1.34"
|
|
|
|
[target.x86_64-pc-windows-msvc.dependencies]
|
|
user32-sys = "0.1.2"
|
|
winapi = "0.2.4"
|
|
kernel32-sys = "0.1.4"
|
|
gdi32-sys = "0.1.1"
|
|
|
|
[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"
|