-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
72 lines (64 loc) · 1.31 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
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
[workspace]
members = [
"sss-lib/render",
"sss-lib/parser",
"sss-lib/sss-core",
"sss-lib/sss-std",
"sss-cli",
"layouts-derive",
"sss-web-app"
]
resolver = "2"
[workspace.package]
version = "1.6.7"
edition = "2021"
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 = { version = "1" }
tokio = { version = "1", features = ["full"] }
thiserror = "2.0"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
encre-css = "0.14.1"
anyhow = "1.0.95"
clap = { version = "4.5.23", features = [ "derive"] }
toml = "0.8.19"
utoipa = "5.3.1"
base64_light = "0.1.5"
[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.release]
opt-level = 'z'
debug = false
lto = true
codegen-units = 24
panic = 'abort'
strip = true
incremental = true
debug-assertions = false
overflow-checks = false
[profile.test]
opt-level = 0
debug = true
[profile.bench]
opt-level = 3
debug = false
[profile.wasm-release]
inherits = "release"
opt-level = 'z'
lto = true
codegen-units = 1