8cb73f88d0
Also, drop the commented-out beginnings of a `plotters-gtk4` version. I can't use `plotters-gtk4` on my machine because it requires GTK 4.14 or higher, and Ubuntu 22.04 is still at GTK 4.6.
17 lines
345 B
TOML
17 lines
345 B
TOML
[package]
|
|
name = "rust-benchmark-native"
|
|
version = "0.1.0"
|
|
authors = ["Aaron"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cairo-rs = "0.20.1"
|
|
gtk = { package = "gtk4", version = "0.9.0" }
|
|
nalgebra = "0.33.0"
|
|
plotters = "0.3.6"
|
|
plotters-cairo = "0.7.0"
|
|
|
|
[profile.release]
|
|
opt-level = "s" # optimize for small code size
|
|
debug = true # include debug symbols
|