Browse Source

feat: initialize Rust project structure

rust
Giovanni Torres 1 year ago
parent
commit
6cbc5446de
  1. 1
      .gitignore
  2. 6
      Cargo.toml
  3. 0
      README.md
  4. 3
      src/main.rs

1
.gitignore vendored

@ -0,0 +1 @@
/target

6
Cargo.toml

@ -0,0 +1,6 @@
[package]
name = "kvm-install-vm"
version = "0.1.0"
edition = "2024"
[dependencies]

3
src/main.rs

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