23da739650
- Fixes #163 - Reimplements window resize - Still has problems on macOS; Resizing with the drag handle blocks the main loop. See: - https://github.com/glfw/glfw/issues/1251 - https://github.com/rust-windowing/winit/issues/219
17 lines
346 B
TOML
17 lines
346 B
TOML
[package]
|
|
name = "minimal-fltk"
|
|
version = "0.1.0"
|
|
authors = ["Jay Oster <jay@kodewerx.org>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[features]
|
|
optimize = ["log/release_max_level_warn"]
|
|
default = ["optimize"]
|
|
|
|
[dependencies]
|
|
fltk = { version = "1.0.14", features = ["no-images", "no-pango"] }
|
|
env_logger = "0.8"
|
|
log = "0.4"
|
|
pixels = { path = "../.." }
|