19 lines
351 B
TOML
19 lines
351 B
TOML
[package]
|
|
name = "cube"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "s"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
[dependencies]
|
|
glam = { version = "0.29.0", default-features = false, features = ["libm"] }
|
|
libm = "0.2.8"
|
|
syscalls = { version = "0.6.18", default-features = false }
|