summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 1bd7537adec88a7cd4b47f0c79166fc2c58fbf75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[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"
async-trait = "0.1.88"
axum = { version = "0.8.4", features = ["macros"] }
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.46.1", features = ["macros", "rt-multi-thread", "signal"] }
tower-http = { version = "0.6.6", features = ["trace"] }
tracing = "0.1.41"
url = "2.5.4"

[dependencies.stack-up]
git = "https://github.com/rtkay123/stack-up.git"
features = ["tracing"]

[dev-dependencies]
tower = { version = "0.5.2", features = ["util"] }