rust_minifb/Cargo.toml
dependabot-preview[bot] 880e8db6df
Update wayland-protocols requirement from 0.24 to 0.25 (#142)
Updates the requirements on [wayland-protocols](https://github.com/smithay/wayland-rs) to permit the latest version.
- [Release notes](https://github.com/smithay/wayland-rs/releases)
- [Changelog](https://github.com/Smithay/wayland-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/smithay/wayland-rs/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-03-31 09:05:19 +02:00

104 lines
2.5 KiB
TOML

[package]
name = "minifb"
version = "0.15.3"
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.15/minifb"
build = "build.rs"
edition = "2018"
readme = "README.md"
exclude = [
"resources/"
]
[badges]
maintenance = {status = "actively-developed"}
[dev-dependencies]
png = "0.16"
[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"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.x86_64-unknown-linux-gnu.dependencies]
x11-dl = "2.18.3"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.arm-unknown-linux-gnueabihf.dependencies]
x11-dl = "2.18.3"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.armv7-unknown-linux-gnueabihf.dependencies]
x11-dl = "2.18.3"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.aarch64-unknown-linux-gnu.dependencies]
x11-dl = "2.18.3"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.x86_64-unknown-dragonfly.dependencies]
x11-dl = "2.18.3"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.armv6-unknown-freebsd.dependencies]
x11-dl = "2.18.3"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.armv7-unknown-freebsd.dependencies]
x11-dl = "2.18.3"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.aarch64-unknown-freebsd.dependencies]
x11-dl = "2.18.3"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.x86_64-unknown-freebsd.dependencies]
x11-dl = "2.18.3"
wayland-client = "0.25"
wayland-protocols = { version = "0.25", features = ["client"] }
tempfile = "3.1.0"
[target.x86_64-unknown-redox.dependencies]
orbclient = "0.3.20"