Add blank Rust structure as a placeholder for actual code

This commit is contained in:
Rafael G. Martins 2025-02-21 13:40:39 +11:00
commit f14a7bd21c
4 changed files with 23 additions and 3 deletions

4
.gitignore vendored
View file

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

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 = "vestacp"
version = "0.1.0"

12
Cargo.toml Normal file
View file

@ -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
src/main.rs Normal file
View file

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