diff options
author | rtkay123 <dev@kanjala.com> | 2025-07-12 13:46:33 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-07-12 13:46:33 +0200 |
commit | ba14505f39d8634921f260d715aa8e66f2a14406 (patch) | |
tree | e8d2cc267302d4036c42bb16b77029c6a6799f9d /Cargo.toml | |
parent | 1dc7dccb7536f6831de570f535e6911384e1a7e4 (diff) | |
download | sellershut-ba14505f39d8634921f260d715aa8e66f2a14406.tar.bz2 sellershut-ba14505f39d8634921f260d715aa8e66f2a14406.zip |
feat: start server
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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"] } |