rust-operating-system/Cargo.toml

17 lines
233 B
TOML
Raw Normal View History

2019-07-09 02:02:08 -07:00
[package]
name = "rustos"
version = "0.1.0"
authors = ["greg <greg.shuflin@protonmail.com>"]
edition = "2018"
2019-07-09 09:42:41 -07:00
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
2019-07-09 02:02:08 -07:00
[dependencies]
2019-07-10 01:37:58 -07:00
bootloader = "0.6.0"
2019-07-10 02:27:20 -07:00
volatile = "0.2.6"
2019-07-09 09:42:41 -07:00