Initial rust setup

This commit is contained in:
2025-11-02 17:45:28 +02:00
parent 6f50aeb405
commit ac442e9f7c
5 changed files with 19 additions and 1 deletions

6
embnux-init/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "embnux-init"
version = "0.1.0"
edition = "2024"
[dependencies]

3
embnux-init/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}