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