blob: 1dab827384e1c8682023555206e8900a418f3f93 (
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
|
[workspace]
resolver = "3"
members = [ "sellershut", "lib/*" ]
[workspace.package]
license = "AGPL-3.0-only"
readme = "README.md"
documentation = "https://books.kanjala.com/sellershut"
[workspace.dependencies]
async-trait = "0.1.89"
secrecy = "0.10.3"
serde = "1.0.228"
shared-svc = { path = "lib/shared-svc" }
thiserror = "2.0.18"
time = "0.3.47"
tokio = "1.49.0"
tracing = "0.1.44"
url = "2.5.8"
[workspace.dependencies.sqlx]
version = "0.8.6"
default-features = false
features = ["macros", "postgres", "runtime-tokio-rustls"]
[profile.dev.package.sqlx-macros]
opt-level = 3
|