23 lines
No EOL
491 B
TOML
23 lines
No EOL
491 B
TOML
[package]
|
|
name = "cums"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ieee1275 = { git = "https://github.com/floppydiskette/ieee1275-rs", features = ["no_panic_handler", "no_global_allocator"], optional = true }
|
|
|
|
[features]
|
|
openfirmware = ["ieee1275"]
|
|
ppc32 = ["openfirmware"]
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
strip = true
|
|
|
|
[build-dependencies]
|
|
cc = "1.0" |