19 lines
467 B
TOML
19 lines
467 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" }
|
|
##minifb = "0.27.0"
|
|
nalgebra = "0.33.0"
|
|
plotters = "0.3.6"
|
|
plotters-cairo = "0.7.0"
|
|
##plotters-gtk4 = { git = "https://github.com/baarkerlounger/plotters-gtk4.git", branch = "patch-1" }
|
|
|
|
[profile.release]
|
|
opt-level = "s" # optimize for small code size
|
|
debug = true # include debug symbols
|