aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: dd33222ce8de3c3c08e60ebea21f29e8d3f4bb40 (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
29
30
[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-session = "3.0.0"
async-trait = "0.1.89"
reqwest = { version = "0.13.2", default-features = false }
secrecy = "0.10.3"
serde = "1.0.228"
serde_json = "1.0.149"
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", "migrate", "postgres", "runtime-tokio-rustls"]

[profile.dev.package.sqlx-macros]
opt-level = 3