Introduces the `rustylee` Rust project with a basic "Hello, world!" application. Configures cross-compilation for `aarch64-unknown-linux-gnu` targets using `cargo.toml`. Adds a deployment script to automate pushing the compiled ARM64 binary to a remote host. This enables development and deployment of Rust applications for the target environment.
6 lines
79 B
TOML
6 lines
79 B
TOML
[package]
|
|
name = "rustylee"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|