feat: cargo init

This commit is contained in:
Moritz Böhme 2025-02-23 15:40:39 +01:00
parent 05e5d9410a
commit 0dc401f642
3 changed files with 18 additions and 0 deletions

9
.gitignore vendored
View file

@ -19,3 +19,12 @@ Cargo.lock
# Added by cargo
/target
.aider*
# Added by cargo
#
# already existing elements were commented out
#/target

6
Cargo.toml Normal file
View file

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

3
src/main.rs Normal file
View file

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