This repository was archived by the owner on Mar 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (38 loc) · 1.25 KB
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
41
42
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/model",
"crates/server",
]
[workspace.package]
version = "2.1.4"
edition = "2021"
[workspace.dependencies]
anyhow = { version = "1.0" }
argon2 = { version = "0.5", features = ["std"] }
base32 = { version = "0.5" }
base64 = { version = "0.22" }
clap = { version = "4.4", features = ["derive", "env", "wrap_help"] }
humansize = { version = "2.1" }
humantime = { version = "2.2" }
pbkdf2 = { version = "0.12", features = ["simple"] }
rand_core = { version = "0.9", features = ["std"] }
rand = { version = "0.9" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
shellexpand = { version = "3.1" }
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio", "time", "uuid"] }
thiserror = { version = "2.0" }
time = { version = "0.3", features = ["formatting", "macros", "serde"] }
time-humanize = { version = "0.1" }
tokio = { version = "1.32", features = ["full"] }
toml = { version = "0.9" }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.11", features = ["v4", "serde"] }
parcel-model = { path = "crates/model" }
[profile.release]
opt-level = 3
strip = "symbols"
lto = "fat"