feat: cargo init
This commit is contained in:
parent
05e5d9410a
commit
0dc401f642
3 changed files with 18 additions and 0 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
|
@ -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
6
Cargo.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "filetags_rs"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
3
src/main.rs
Normal file
3
src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue