-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 875 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 875 Bytes
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
[workspace.lints.rust]
unsafe_code = "forbid"
# unused = "allow" # For experimental dev.
[workspace]
resolver = "2"
members = [
# -- Application Libraries
"crates/libs/lib-utils",
"crates/libs/lib-auth",
"crates/libs/lib-db",
"crates/libs/lib-core",
# -- Application Services
"crates/services/web-server",
"crates/services/exercise_cron_job",
# -- Tools
"crates/tools/gen-key", "crates/libs/lib-core",
]
# NOTE: Only the crates that are utilized in two or more sub-crates and benefit from global management
# are handled in workspace.dependencies. Other strategies may also be valid.
[workspace.dependencies]
# -- Serde
serde_with = {version = "3", features = ["time_0_3"] }
# -- Data
modql = { version = "0.3.7", features = ["with-sea-query"]}
derive_more = {version = "1.0.0-beta", features = ["from", "display"] }