Initial rust setup

This commit is contained in:
Gvidas Juknevičius 2025-11-02 17:45:28 +02:00
parent 6f50aeb405
commit ac442e9f7c
Signed by: MCorange
GPG Key ID: 5BE6B533CB76FE86
5 changed files with 19 additions and 1 deletions

2
.cargo/config.toml Normal file
View File

@ -0,0 +1,2 @@
[build]
target-dir="build/"

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "embnux-init"
version = "0.1.0"

View File

@ -1,3 +1,3 @@
[workspace]
resolver="2"
members=[]
members=["embnux-init"]

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!");
}