mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "winit"
|
|
version = "0.5.10"
|
|
authors = ["The winit contributors, Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
|
description = "Cross-platform window creation library."
|
|
keywords = ["windowing"]
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/tomaka/winit"
|
|
documentation = "https://docs.rs/winit"
|
|
categories = ["gui"]
|
|
|
|
[dependencies]
|
|
lazy_static = "0.2.2"
|
|
libc = "0.2"
|
|
shared_library = "0.1.5"
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies.android_glue]
|
|
version = "0.2"
|
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
objc = "0.2"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
objc = "0.2"
|
|
cgl = "0.1"
|
|
cocoa = "=0.5.2"
|
|
core-foundation = "0.2"
|
|
core-graphics = "0.4"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = "0.2"
|
|
shell32-sys = "0.1"
|
|
gdi32-sys = "0.1"
|
|
user32-sys = "~0.1.2"
|
|
kernel32-sys = "0.2"
|
|
dwmapi-sys = "0.1"
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))'.dependencies]
|
|
wayland-client = { version = "0.7.4", features = ["dlopen"] }
|
|
wayland-kbd = "0.6.2"
|
|
wayland-window = "0.4.2"
|
|
x11-dl = "2.8"
|