-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
40 lines (34 loc) · 839 Bytes
/
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
[workspace.package]
edition = "2021"
authors = ["Oliver Tale-Yazdi <[email protected]>"]
version = "3.4.3"
repository = "https://github.com/ggwpez/substrate-weight-compare"
readme = "README.md"
keywords = [ "polkadot", "substrate", "blockchain" ]
license = "GPL-3.0-only"
description = "Compare weight files of the Substrate blockchain SDK."
[workspace]
members = [
"core",
"cli",
"web"
]
resolver = "2"
[workspace.dependencies]
subweight-core = { version = "3.4.3", path = "core" }
clap = { version = "4.5.16", features = ["derive"] }
env_logger = "0.11.5"
log = "0.4.22"
sailfish = { version = "0.8.3" }
[profile.test-release]
inherits = "release"
lto = "off"
opt-level = 3
incremental = true
debug-assertions = true
[profile.production]
inherits = "release"
lto = "fat"
strip = true
codegen-units = 1
opt-level = "z"