26 lines
683 B
TOML
26 lines
683 B
TOML
[package]
|
|
name = "altra64"
|
|
version = "0.1.0"
|
|
authors = ["moparisthebest <admin@moparisthebest.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
#libc = {version = "0.2", default-features = false}
|
|
#no-std-compat = { version = "0.4.1", features = [ "alloc" ] }
|
|
#libdragon-bindings = { git = "https://github.com/DagothBob/libdragon-bindings" }
|
|
#cstr_core = {version = "0.2", default-features = false}
|
|
|
|
# the profile used for `cargo build`
|
|
[profile.dev]
|
|
panic = "abort" # disable stack unwinding on panic
|
|
lto = "off"
|
|
|
|
# the profile used for `cargo build --release`
|
|
[profile.release]
|
|
panic = "abort" # disable stack unwinding on panic
|
|
lto = "off"
|
|
|
|
[lib]
|
|
name = "altra64"
|
|
crate-type = ["staticlib"]
|