[go: up one dir, main page]

glfw 0.49.0

GLFW3 bindings and idiomatic wrapper for Rust.
Documentation
[package]
authors = ["The glfw-rs developers."]
description = "GLFW3 bindings and idiomatic wrapper for Rust."
keywords = ["windowing", "opengl", "vulkan"]
license = "Apache-2.0"
name = "glfw"
readme = "README.md"
repository = "https://github.com/bjz/glfw-rs"
version = "0.49.0"
edition = "2021"
rust-version = "1.56"

[dependencies]
bitflags = "1.0.0"
raw-window-handle = "0.5.0"

[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2"

[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["libloaderapi"] }

[dependencies.glfw-sys]
optional = true
version = "4.0.0"

[dependencies.image]
optional = true
version = "^0.24.1"

[dependencies.log]
optional = true
version = "0.4"

[dependencies.vk-sys]
optional = true
version = "^0.4"

[dev-dependencies]
log = "0.4"

[features]
all = ["image", "vulkan", "log", "wayland"]
default = ["glfw-sys"]
vulkan = ["vk-sys"]
wayland = ["glfw-sys/wayland"]