26 lines
614 B
TOML
26 lines
614 B
TOML
[package]
|
|
name = "rust_opengl"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
panic = "abort"
|
|
opt-level = "z"
|
|
codegen-units = 1
|
|
|
|
[features]
|
|
default = ["wayland","egl"]
|
|
egl = ["glutin-winit/egl"]
|
|
wayland = ["glutin-winit/wayland", "winit/wayland-dlopen"]
|
|
|
|
[dependencies]
|
|
jxl-oxide = { version = "0.8.1" }
|
|
glutin = { version = "0.32.0", default-features = false}
|
|
glutin-winit = { version = "0.5.0", default-features = false}
|
|
raw-window-handle = "0.6"
|
|
winit = { version = "0.30.0", default-features = false, features = ["rwh_06"] }
|
|
|
|
[build-dependencies]
|
|
gl_generator = "0.14"
|
|
cfg_aliases = "0.2.1"
|