1 | [package] |
2 | name = "glutin-winit" |
3 | version = "0.4.2" |
4 | authors = ["Kirill Chibisov <contact@kchibisov.com>" ] |
5 | description = "Glutin bootstrapping helpers with winit" |
6 | keywords = ["windowing" , "opengl" , "winit" ] |
7 | license = "MIT" |
8 | readme = "README.md" |
9 | repository = "https://github.com/rust-windowing/glutin" |
10 | edition = "2021" |
11 | |
12 | [features] |
13 | default = ["egl" , "glx" , "x11" , "wayland" , "wgl" ] |
14 | egl = ["glutin/egl" ] |
15 | glx = ["glutin/glx" , "glutin/x11" , "winit/x11" , "x11" ] |
16 | wgl = ["glutin/wgl" ] |
17 | x11 = ["glutin/x11" , "winit/x11" ] |
18 | wayland = ["glutin/wayland" , "winit/wayland" ] |
19 | |
20 | [dependencies] |
21 | glutin = { version = "0.31.0" , path = "../glutin" , default-features = false } |
22 | raw-window-handle = "0.5.2" |
23 | winit = { version = "0.29.2" , default-features = false, features = ["rwh_05" ] } |
24 | |
25 | [build-dependencies] |
26 | cfg_aliases = "0.1.1" |
27 | |