23 lines
544 B
TOML
23 lines
544 B
TOML
|
cargo-features = ["different-binary-name"]
|
||
|
|
||
|
[package]
|
||
|
name = "my-project"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
rust-version = "1.64.0"
|
||
|
autobins = false
|
||
|
autoexamples = false
|
||
|
autotests = false
|
||
|
autobenches = false
|
||
|
|
||
|
[[bin]]
|
||
|
name = "my-project"
|
||
|
filename = "my-project.fap"
|
||
|
bench = false
|
||
|
test = false
|
||
|
|
||
|
[dependencies]
|
||
|
flipperzero = { git = "https://github.com/flipperzero-rs/flipperzero.git" }
|
||
|
flipperzero-sys = { git = "https://github.com/flipperzero-rs/flipperzero.git" }
|
||
|
flipperzero-rt = { git = "https://github.com/flipperzero-rs/flipperzero.git" }
|