mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
99 lines
2.1 KiB
TOML
99 lines
2.1 KiB
TOML
[package]
|
|
name = "glutin"
|
|
version = "0.3.4"
|
|
authors = ["tomaka <pierre.krieger1708@gmail.com>"]
|
|
description = "Cross-plaform OpenGL context provider."
|
|
keywords = ["windowing", "opengl"]
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/tomaka/glutin"
|
|
documentation = "http://tomaka.github.io/glutin/"
|
|
build = "build.rs"
|
|
|
|
[features]
|
|
default = ["window"]
|
|
window = []
|
|
|
|
[dependencies]
|
|
gl_common = "0.0.4"
|
|
lazy_static = "0.1.10"
|
|
libc = "0.1"
|
|
shared_library = "0.1.0"
|
|
|
|
[build-dependencies]
|
|
gl_generator = "0.0.26"
|
|
khronos_api = "0.0.7"
|
|
|
|
[dev-dependencies]
|
|
clock_ticks = "0.0.5"
|
|
|
|
[target.arm-linux-androideabi.dependencies.android_glue]
|
|
version = "0"
|
|
|
|
[target.x86_64-apple-ios.dependencies]
|
|
objc = "0.1"
|
|
|
|
[target.aarch64-apple-ios.dependencies]
|
|
objc = "0.1"
|
|
|
|
[target.armv7s-apple-ios.dependencies]
|
|
objc = "0.1"
|
|
|
|
[target.armv7-apple-ios.dependencies]
|
|
objc = "0.1"
|
|
|
|
[target.x86_64-apple-darwin.dependencies]
|
|
objc = "0.1"
|
|
cgl = "0"
|
|
cocoa = "0"
|
|
core-foundation = "0"
|
|
core-graphics = "0"
|
|
|
|
[target.i686-pc-windows-gnu.dependencies]
|
|
winapi = "0.2"
|
|
shell32-sys = "0.1"
|
|
gdi32-sys = "0.1"
|
|
user32-sys = "~0.1.1"
|
|
kernel32-sys = "0.1"
|
|
dwmapi-sys = "0.1"
|
|
|
|
[target.x86_64-pc-windows-gnu.dependencies]
|
|
winapi = "0.2"
|
|
shell32-sys = "0.1"
|
|
gdi32-sys = "0.1"
|
|
user32-sys = "~0.1.1"
|
|
kernel32-sys = "0.1"
|
|
dwmapi-sys = "0.1"
|
|
|
|
[target.x86_64-pc-windows-msvc.dependencies]
|
|
winapi = "0.2"
|
|
shell32-sys = "0.1"
|
|
gdi32-sys = "0.1"
|
|
user32-sys = "~0.1.1"
|
|
kernel32-sys = "0.1"
|
|
dwmapi-sys = "0.1"
|
|
|
|
[target.i686-unknown-linux-gnu.dependencies]
|
|
osmesa-sys = "0.0.5"
|
|
wayland-client = { version = "0.2.0", features = ["egl", "dlopen"] }
|
|
wayland-kbd = "0.2.0"
|
|
x11-dl = "~2.0"
|
|
|
|
[target.x86_64-unknown-linux-gnu.dependencies]
|
|
osmesa-sys = "0.0.5"
|
|
wayland-client = { version = "0.2.0", features = ["egl", "dlopen"] }
|
|
wayland-kbd = "0.2.0"
|
|
x11-dl = "~2.0"
|
|
|
|
[target.arm-unknown-linux-gnueabihf.dependencies]
|
|
osmesa-sys = "0.0.5"
|
|
wayland-client = { version = "0.2.0", features = ["egl", "dlopen"] }
|
|
wayland-kbd = "0.2.0"
|
|
x11-dl = "~2.0"
|
|
|
|
[target.aarch64-unknown-linux-gnu.dependencies]
|
|
osmesa-sys = "0.0.5"
|
|
wayland-client = { version = "0.2.0", features = ["egl", "dlopen"] }
|
|
wayland-kbd = "0.2.0"
|
|
x11-dl = "~2.0"
|