[Question] Creating FAP from scratch #52
-
Hello, I am trying to create a custom FAP using flipperzero-rs crate. I am new to Rust and not sure what I am doing wrong. [package]
name = "pms"
version = "0.1.0"
edition = "2021"
[dependencies]
flipperzero = "0.7.2"
flipperzero-rt = "0.7.2"
flipperzero-sys = "0.7.2" And when I run
And if I use this command How do I should modify Cargo.toml / command to build the app? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Answer: I figured out, that I have to copy |
Beta Was this translation helpful? Give feedback.
Answer: I figured out, that I have to copy
crates/.cargo
to my project root to build the app.New questions: Am I doing it right? Should I add it to your README.md?