-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (50 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
59 lines (50 loc) · 1.05 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
[workspace]
members = ["example"]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2024"
authors = ["TOwInOK <60252419+TOwInOK@users.noreply.github.com>"]
repository = "change_me"
license = "MIT" #"Apache-2.0"
[workspace.dependencies]
# serde = { version = "^1", features = ["derive"] }
# serde_json = { version = "1" }
# ron = "^0.10"
# tracing = "^0.1"
# tracing-subscriber = "^0.3"
# anyhow = "^1"
# tokio = { version = "^1", features = ["full"] }
# thiserror = "^2"
[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