Sfoglia il codice sorgente

Add blank Rust structure as a placeholder for actual code

Rafael G. Martins 1 anno fa
parent
commit
f14a7bd21c
4 ha cambiato i file con 23 aggiunte e 3 eliminazioni
  1. 1 3
      .gitignore
  2. 7 0
      Cargo.lock
  3. 12 0
      Cargo.toml
  4. 3 0
      src/main.rs

+ 1 - 3
.gitignore

@@ -4,6 +4,4 @@
 *.gz
 .vscode
 .DS_Store
-src/react/node_modules
-src/react/build
-/.idea
+target/

+ 7 - 0
Cargo.lock

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

+ 12 - 0
Cargo.toml

@@ -0,0 +1,12 @@
+[package]
+name = "vestacp"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[[bin]]
+name = "vestacp"
+path = "src/main.rs"
+
+[dependencies]

+ 3 - 0
src/main.rs

@@ -0,0 +1,3 @@
+fn main() {
+    println!("The actual code will be added here once licensing and the foundation is sorted out.");
+}