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
|