-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
28 lines (23 loc) · 824 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "raw-gl-context"
version = "0.1.2"
authors = ["Micah Johnston <[email protected]>"]
edition = "2018"
description = "Library for creating an OpenGL context from a RawWindowHandle"
repository = "https://github.com/glowcoil/raw-gl-context"
readme = "README.md"
license = "MIT/Apache-2.0"
[dependencies]
raw-window-handle = "0.3.3"
[target.'cfg(target_os="windows")'.dependencies]
winapi = { version = "0.3.8", features = ["libloaderapi", "minwindef", "ntdef", "windef", "wingdi", "winnt", "winuser"] }
uuid = { version = "0.8", features = ["v4"] }
[target.'cfg(target_os="linux")'.dependencies]
x11 = { version = "2.3", features = ["xlib", "glx"] }
[target.'cfg(target_os="macos")'.dependencies]
cocoa = "0.24.0"
objc = "0.2.7"
core-foundation = "0.9.1"
[dev-dependencies]
gl = "0.14.0"
winit = "0.22.2"