-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 862 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (25 loc) · 862 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
30
[workspace]
resolver = "2"
members = ["packages/frontend", "packages/api", "packages/entity", "packages/form_hooks/form_hooks_derive", "packages/form_hooks"]
[workspace.dependencies]
dioxus = { version = "0.7.3" }
sea-orm = { version = "2.0.0-rc" }
serde = { version = "1.0.228" }
serde_json = { version = "1.0.145" }
anyhow = { version = "1.0.71" }
regex = "1.12.2"
time = { version = "0.3.46", features = ["serde", "wasm-bindgen", "local-offset", "formatting", "parsing", "serde-human-readable"] }
# workspace
api = { path = "packages/api" }
entity = { path = "packages/entity" }
form_hooks_derive = { path = "packages/form_hooks/form_hooks_derive" }
form_hooks = { path = "packages/form_hooks" }
#[workspace.lints.clippy]
#pedantic = "warn"
[profile.release]
opt-level = "z"
debug = false
lto = true
codegen-units = 1
panic = "abort"
incremental = false