StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.
| 1 | // We can use `std::process:Command` here because this is invoked within a build script, |
| 2 | // _not_ within the Warp binary (where it could cause a terminal to temporarily flash on |
| 3 | // Windows). |
| 4 | #![allow(clippy::disallowed_types)] |
| 5 | |
| 6 | use cfg_aliases::cfg_aliases; |
| 7 | |
| 8 | fn main() { |
| 9 | cfg_aliases! { |
| 10 | macos: { target_os = "macos" }, |
| 11 | native: { not(target_family = "wasm") }, |
| 12 | } |
| 13 | } |
| 14 |