Initial commit

master
Wynd 2025-05-01 00:18:55 +03:00
commit 57c5bb43b9
5 changed files with 38 additions and 0 deletions

8
.gitignore vendored 100644
View File

@ -0,0 +1,8 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/
target-watch/
# These are backup files generated by rustfmt
**/*.rs.bk

19
Cargo.toml 100644
View File

@ -0,0 +1,19 @@
[package]
name = "taggo"
version = "0.1.0"
edition = "2024"
authors = ["Wynd <wyndftw@proton.me>"]
description = "application for file tagging"
license = "GPL-3.0-or-later"
[lib]
name = "taggo"
path = "src/lib.rs"
bench = false
[lints.rust]
unsafe_code = { level = "forbid" }
[dependencies]
clap = { version = "4.5", features = ["derive"] }
libsql = { version = "0.9" }

View File

@ -0,0 +1,2 @@
[toolchain]
channel = "1.85"

6
rustfmt.toml 100644
View File

@ -0,0 +1,6 @@
unstable_features = true
reorder_imports = true
hard_tabs = true
control_brace_style = "ClosingNextLine"
imports_granularity = "Crate"
group_imports = "StdExternalCrate"

3
src/main.rs 100644
View File

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