summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-08-30 19:24:49 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-08-30 19:24:49 -0400
commitf342f141c4c27b2a0db2872d4725fb94309c3d83 (patch)
tree08e23f51134ddbe8fc9738ce0672ae6c9548d6cd /Cargo.toml
parent29038461d48484bafaefdf7871ae58fa8335c910 (diff)
Make it an HTTP server
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 319aedf..3fcdf99 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,3 +4,6 @@ version = "0.1.0"
edition = "2021"
[dependencies]
+axum = "0.7.5"
+clap = { version = "4.5.16", features = ["derive", "env"] }
+tokio = { version = "1.40.0", features = ["rt", "macros", "rt-multi-thread"] }