Initial commit

Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
Louis Hollingworth 2024-03-02 19:42:31 +00:00
commit a2678735f5
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
9 changed files with 1934 additions and 0 deletions

14
Cargo.toml Normal file
View file

@ -0,0 +1,14 @@
[package]
name = "taskoj"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
[dependencies]
axum = "0.7.4"
maud = { version = "0.26.0", features = ["axum"] }
rusqlite = { version = "0.31.0", features = ["bundled"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
tokio = { version = "1.36.0", features = ["full", "tracing"] }
toml = "0.8.10"