rust_minifb/Cargo.toml
Daniel Collin 5772cc5380
Merge dev -> master (#111)
* Deprecated update_with_buffer and added a temporary (update_with_buffer_size) for now. This will later be removed and the update_with_buffer is requiring the size to bu suplied

* Reparation for 0.14 release

* Missed one case
2019-12-03 15:24:03 +01:00

59 lines
1.3 KiB
TOML

[package]
name = "minifb"
version = "0.14.0"
license = "MIT/Apache-2.0"
authors = ["Daniel Collin <daniel@collin.com>"]
description = "Cross-platform window setup with optional bitmap rendering"
keywords = ["windowing", "window", "framebuffer"]
categories = ["rendering"]
repository = "https://github.com/emoon/rust_minifb"
documentation = "https://docs.rs/minifb/0.12/minifb"
maintenance = { status = "actively-developed" }
build = "build.rs"
readme = "README.md"
[badges]
appveyor = { repository = "emoon/rust-minifb" }
travis-ci = { repository = "emoon/rust_minifb" }
[build-dependencies]
cc = "1.0"
[dependencies]
cast = "0.2"
time = "0.1.34"
raw-window-handle = "0.3.3"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
"winuser",
"wingdi",
"libloaderapi",
"errhandlingapi"
]
[target.i686-unknown-linux-gnu.dependencies]
x11-dl = "2.18.3"
[target.x86_64-unknown-linux-gnu.dependencies]
x11-dl = "2.18.3"
[target.arm-unknown-linux-gnueabihf.dependencies]
x11-dl = "2.18.3"
[target.armv7-unknown-linux-gnueabihf.dependencies]
x11-dl = "2.18.3"
[target.aarch64-unknown-linux-gnu.dependencies]
x11-dl = "2.18.3"
[target.x86_64-unknown-dragonfly.dependencies]
x11-dl = "2.18.3"
[target.x86_64-unknown-freebsd.dependencies]
x11-dl = "2.18.3"
[target.x86_64-unknown-redox.dependencies]
orbclient = "0.3.20"