24 lines
408 B
TOML
24 lines
408 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]
|
|
pc-keyboard = "0.6.1"
|
|
pic8259 = "0.10.2"
|
|
spin = "0.9.4"
|
|
volatile = "0.4.5"
|
|
x86_64 = "0.14.10"
|