22 lines
546 B
TOML
22 lines
546 B
TOML
[package]
|
|
authors = ["Sean Cross <sean@xobs.io>"]
|
|
edition = "2018"
|
|
name = "rust-font-test"
|
|
version = "0.1.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
minifb = "0.17"
|
|
rusttype = {version = "0.9.2", default-features = false, features = ["libm-math"]}
|
|
rustybuzz = "0.4.0"
|
|
stats_alloc = "0.1.8"
|
|
|
|
[profile.release]
|
|
codegen-units = 1 # 1 better optimizations
|
|
debug = true # symbols are nice and they don't increase the size on Flash
|
|
|
|
[features]
|
|
feature_one = []
|
|
feature_two = []
|