aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: a9a8c27c049c541058d77146e56590032153e6a0 (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
27
28
[workspace]
members = ["crates/*"]
resolver = "3"

[workspace.package]
license = "AGPL-3.0-only"
readme = "README.md"
documentation = "https://books.kanjala.com/sellershut"
homepage = "https://git.kanjala.com/sellershut"

[workspace.dependencies]
api-core = { path = "./crates/api-core", version = "0.0.0" }
async-trait = "0.1.89"
axum = "0.8.8"
secrecy = "0.10.3"
serde = "1.0.228"
serde_json = "1.0.149"
tokio = "1.51.0"
tower = "0.5.3"
thiserror = "2.0.18"
tracing = "0.1.44"
utoipa = "5.4.0"
url = "2.5.8"

[workspace.dependencies.sqlx]
version = "0.8.6"
default-features = false
features = ["macros", "migrate", "postgres"]