summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-07-12 13:46:33 +0200
committerrtkay123 <dev@kanjala.com>2025-07-12 13:46:33 +0200
commitba14505f39d8634921f260d715aa8e66f2a14406 (patch)
treee8d2cc267302d4036c42bb16b77029c6a6799f9d /Cargo.toml
parent1dc7dccb7536f6831de570f535e6911384e1a7e4 (diff)
downloadsellershut-ba14505f39d8634921f260d715aa8e66f2a14406.tar.bz2
sellershut-ba14505f39d8634921f260d715aa8e66f2a14406.zip
feat: start server
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml13
1 files changed, 13 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 299ae1a..ee7a0bc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,3 +8,16 @@ documentation = "https://books.kanjala.com/sellershut"
description = "A federated marketplace platform"
[dependencies]
+activitypub_federation = { version = "0.7.0-beta.5", default-features = false, features = ["axum"] }
+anyhow = "1.0.98"
+axum = { version = "0.8.4", features = ["macros"] }
+tokio = { version = "1.46.1", features = ["macros", "rt-multi-thread", "signal"] }
+tower-http = { version = "0.6.6", features = ["trace"] }
+tracing = "0.1.41"
+
+[dependencies.stack-up]
+git = "https://github.com/rtkay123/stack-up.git"
+features = ["tracing"]
+
+[dev-dependencies]
+tower = { version = "0.5.2", features = ["util"] }