mirror of
https://github.com/stakwork/sphinx-key.git
synced 2025-12-18 07:44:21 +01:00
also mirror all the config files to the ones created with this command: cargo generate --git https://github.com/esp-rs/esp-idf-template cargo just make sure to select a version 5 esp idf in the prompts
7 lines
271 B
Rust
7 lines
271 B
Rust
// Necessary because of this issue: https://github.com/rust-lang/cargo/issues/9641
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
embuild::build::CfgArgs::output_propagated("ESP_IDF")?;
|
|
embuild::build::LinkArgs::output_propagated("ESP_IDF")?;
|
|
Ok(())
|
|
}
|