Rust boilerplate

This commit is contained in:
2023-08-17 00:34:27 +02:00
parent b1c62c72c3
commit 4be7f40c32
3 changed files with 17 additions and 0 deletions

5
Cargo.toml Normal file
View File

@ -0,0 +1,5 @@
[workspace]
members = [
"autonix",
]

9
autonix/Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "autonix"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rnix = "0.11.0"

3
autonix/src/main.rs Normal file
View File

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