-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (81 loc) · 1.62 KB
/
Cargo.toml
File metadata and controls
92 lines (81 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[workspace]
members = [
"sss-lib/render",
"sss-lib/parser",
"sss-lib/theme",
"sss-lib/sss-core",
"sss-std",
"sss-cli",
"html-layouts-derive",
"sss-web-app",
"icon-derive",
"theme-generator",
]
resolver = "2"
[workspace.package]
version = "2.1.7"
edition = "2024"
authors = ["TOwInOK <60252419+TOwInOK@users.noreply.github.com>"]
repository = "https://github.com/TOwInOK/SSS-rs"
license = "Apache-2.0"
[workspace.metadata.docs]
rs-doc-path = "docs"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
thiserror = "2"
tracing = "0.1"
tracing-subscriber = "0.3"
encre-css = "0.14.1"
anyhow = "1"
clap = { version = "4.5.23", features = ["derive"] }
toml = "0.9.8"
utoipa = "5.3.1"
base64_light = "0.1.5"
ron = "0.12"
leptos = { version = "0.8.14" }
[profile.dev]
opt-level = 0
debug = true
strip = "none"
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = true
codegen-units = 256
rpath = false
[profile.dev.build-override]
opt-level = 0
codegen-units = 256
debug = false
[profile.release]
opt-level = 3
debug = false
lto = "thin"
codegen-units = 16
panic = 'abort'
strip = true
incremental = false
debug-assertions = false
overflow-checks = false
[profile.release.build-override]
opt-level = 0
codegen-units = 256
[profile.test]
opt-level = 0
debug = true
incremental = true
debug-assertions = true
overflow-checks = true
[profile.bench]
opt-level = 3
debug = false
lto = "thin"
codegen-units = 16
[profile.wasm-release]
inherits = "release"
opt-level = 'z'
lto = true
codegen-units = 1