summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: ee7a0bcfbd71ced34e5eecd2570ea26450af21f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "sellershut"
version = "0.1.0"
license = "AGPL-3.0-only"
edition = "2024"
homepage = "https://git.kanjala.com/sellershut"
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"] }