-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 1.06 KB
/
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
41
42
43
44
45
46
[workspace]
members = ["./crates/*"]
resolver = "2"
[workspace.package]
authors = ["Heliozoa <[email protected]>"]
edition = "2021"
license = "AGPL-3.0-or-later"
repository = "https://github.com/Heliozoa/lbr"
rust-version = "1.63"
version = "0.1.0"
[workspace.dependencies]
jadata = { path = "./crates/jadata" }
lbr = { path = "./crates/lbr" }
lbr_api = { path = "./crates/lbr_api" }
lbr_core = { path = "./crates/lbr_core" }
lbr_frontend = { path = "./crates/lbr_frontend" }
lbr_server = { path = "./crates/lbr_server" }
lbr_web = { path = "./crates/lbr_web" }
leptos = "0.7.0-rc0"
leptos_axum = "0.7.0-rc0"
leptos_meta = "0.7.0-rc0"
leptos_router = "0.7.0-rc0"
# [patch.crates-io]
# ichiran = { path = "../ichiran" }
[profile.dev.package]
serde.opt-level = 3
serde_json.opt-level = 3
[profile.wasm-release]
codegen-units = 1
inherits = "release"
lto = true
opt-level = 'z'
[[workspace.metadata.leptos]]
bin-package = "lbr_server"
bin-target = "lbr_server"
lib-package = "lbr_frontend"
lib-profile-release = "wasm-release"
name = "lbr"
style-file = "style/bulma.css"