diff options
author | rose <axtlos@disroot.org> | 2024-12-09 03:24:45 +0100 |
---|---|---|
committer | rose <axtlos@disroot.org> | 2024-12-09 03:24:45 +0100 |
commit | 145923525192de5e09e2e3470206d047894a7087 (patch) | |
tree | 8884e2bdc2790dd6c65e9f0dc958875bcdabcace /Cargo.toml | |
download | diary-master.tar.gz diary-master.tar.bz2 |
commitmaster
Diffstat (limited to '')
-rw-r--r-- | Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0515668 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "diary" +version = "0.1.0" +edition = "2021" + +[dependencies] +axum = "0.7.9" +serde = { version = "1.0.215", features = ["derive"] } +serde_json = "1.0.133" +tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros"] } +tracing-subscriber = "0.3.19" +handlebars = "6.2.0" +chrono = "0.4.38" +minify-html = "0.15.0" + |