-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (32 loc) · 812 Bytes
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
[workspace]
members = ["crates/*", "examples/*"]
resolver = "2"
[workspace.package]
edition = "2021"
homepage = "https://github.com/justinrubek/lockpad"
license = "MIT"
repository = "https://github.com/justinrubek/lockpad"
version = "0.4.0"
[workspace.dependencies]
anyhow = "1.0.68"
axum = "0.7"
axum-extra = "0.9"
serde_json = "1.0.87"
thiserror = "1.0.38"
tracing = "0.1.37"
[workspace.dependencies.jsonwebtoken]
version = "8.2.0"
features = ["use_pem"]
[workspace.dependencies.serde]
version = "1"
features = ["derive"]
[workspace.dependencies.sqlx]
version = "0.7"
features = ["runtime-tokio-rustls", "postgres", "time", "macros", "uuid"]
[workspace.dependencies.tokio]
version = "1"
features = ["full"]
[workspace.dependencies.ulid]
version = "1.0.0"
features = ["serde"]
[profile.release.package]