Cargo init

This commit is contained in:
Candifloss 2026-04-22 13:04:54 +05:30
parent cb455908f0
commit 43472a2fc3
3 changed files with 20 additions and 0 deletions

6
.gitignore vendored
View File

@ -20,3 +20,9 @@ Cargo.lock
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Added by cargo
/target
test/

11
Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "sqliteviewer"
version = "0.1.0"
edition = "2024"
[dependencies]
askama = "0.15.6"
axum = "0.8.9"
clap = { version = "4.6.1", features = ["derive"] }
rusqlite = { version = "0.39.0", features = ["bundled"] }
tokio = { version = "1.52.1", features = ["full"] }

3
src/main.rs Normal file
View File

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