mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
50 lines
1,004 B
TOML
50 lines
1,004 B
TOML
[package]
|
|
name = "glutin"
|
|
version = "0.0.20"
|
|
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 = []
|
|
headless = []
|
|
|
|
[dependencies]
|
|
gl_common = "*"
|
|
lazy_static = "0.1"
|
|
libc = "*"
|
|
|
|
[build-dependencies]
|
|
gl_generator = "*"
|
|
khronos_api = "*"
|
|
|
|
[dev-dependencies]
|
|
clock_ticks = "*"
|
|
|
|
[target.arm-linux-androideabi.dependencies.android_glue]
|
|
version = "0"
|
|
|
|
[target.x86_64-apple-darwin.dependencies]
|
|
objc = "0.1"
|
|
glutin_cocoa = "0"
|
|
glutin_core_graphics = "0"
|
|
glutin_core_foundation = "0"
|
|
|
|
[target.i686-pc-windows-gnu.dependencies]
|
|
winapi = "0.1"
|
|
gdi32-sys = "0.1"
|
|
user32-sys = "0.1"
|
|
kernel32-sys = "0.1"
|
|
|
|
[target.x86_64-pc-windows-gnu.dependencies]
|
|
winapi = "0.1"
|
|
gdi32-sys = "0.1"
|
|
user32-sys = "0.1"
|
|
kernel32-sys = "0.1"
|