Files
low-level-programming/os-in-rust/Cargo.toml
Greg Shuflin d504aa2a6d Add basic ARM rust freestanding binary
Following the modern version of Philipp Oppermann's blog-tutorial. Build
with `cargo build --target thumbv7em-none-eabihf`
2022-02-09 20:31:53 -08:00

15 lines
245 B
TOML

[package]
name = "os-in-rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[dependencies]