20 lines
347 B
TOML
20 lines
347 B
TOML
[package]
|
|
name = "moon"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "BSD-2-Clause"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
opt-level = 2
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
opt-level = 's'
|
|
strip = "debuginfo"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
spin = "0.9.4"
|
|
x86_64 = "0.14.10" |