chore: create initial structure

This commit is contained in:
itsscb 2025-06-21 21:04:49 +02:00
parent d9a0be61a7
commit a6246ffe66
4 changed files with 16 additions and 0 deletions

5
.gitignore vendored
View File

@ -20,3 +20,8 @@ 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

10
Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "stammbaum"
version = "0.1.0"
edition = "2024"
[dependencies]
askama = "0.14.0"
axum = "0.8.4"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"

1
src/lib.rs Normal file
View File

@ -0,0 +1 @@
mod person;

0
src/person.rs Normal file
View File