Initial rust setup
This commit is contained in:
parent
6f50aeb405
commit
ac442e9f7c
2
.cargo/config.toml
Normal file
2
.cargo/config.toml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[build]
|
||||
target-dir="build/"
|
||||
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal 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"
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
[workspace]
|
||||
resolver="2"
|
||||
members=[]
|
||||
members=["embnux-init"]
|
||||
|
|
|
|||
6
embnux-init/Cargo.toml
Normal file
6
embnux-init/Cargo.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "embnux-init"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
3
embnux-init/src/main.rs
Normal file
3
embnux-init/src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user