chore: init cargo project

This commit is contained in:
Alexander Navarro 2025-02-13 11:00:46 -03:00
parent 7e331ee4f4
commit 5362d2ba30
5 changed files with 22 additions and 1 deletions

5
.gitignore vendored
View file

@ -7,3 +7,8 @@
# Allow to presever folder structure in excluded folers, should be the last rule # Allow to presever folder structure in excluded folers, should be the last rule
!**/.gitkeep !**/.gitkeep
# Added by cargo
/target

View file

@ -2,4 +2,4 @@
mod repo ".devfiles/justfile" mod repo ".devfiles/justfile"
dev: dev:
@echo "Edit the .justfile to setup the dev task!" cargo run

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

6
Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "compendium"
version = "0.1.0"
edition = "2021"
[dependencies]

3
src/main.rs Normal file
View file

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