pixels/examples/minimal-fltk/Cargo.toml
Mohammed Alyousef f845d59213
add fltk example (#137)
* add fltk example

* fix clippy lint

* fix rustfmt check

* add missing trailing new line

* use no-pango feature

* remove call to win.draw()
2021-02-07 10:36:21 -08:00

17 lines
335 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 = "0.14", features = ["no-pango"] }
env_logger = "0.7.1"
log = "0.4.8"
pixels = { path = "../.." }