-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add asymptotic fallback ranges (#65)
* Add asymptotic fallback ranges Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Update deps Signed-off-by: Oliver Tale-Yazdi <[email protected]> * fmt Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Clippy Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Update all deps Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Fix path patterns Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Bump versions Signed-off-by: Oliver Tale-Yazdi <[email protected]> * fmt Signed-off-by: Oliver Tale-Yazdi <[email protected]> --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]>
- Loading branch information
Showing
10 changed files
with
550 additions
and
480 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
cargo-features = ["strip"] | ||
|
||
[workspace.package] | ||
edition = "2021" | ||
authors = ["Oliver Tale-Yazdi <[email protected]>"] | ||
version = "3.4.2" | ||
version = "3.4.3" | ||
repository = "https://github.com/ggwpez/substrate-weight-compare" | ||
readme = "README.md" | ||
keywords = [ "polkadot", "substrate", "blockchain" ] | ||
|
@@ -20,11 +18,11 @@ members = [ | |
resolver = "2" | ||
|
||
[workspace.dependencies] | ||
subweight-core = { version = "3.4.2", path = "core" } | ||
subweight-core = { version = "3.4.3", path = "core" } | ||
|
||
clap = { version = "4.5.4", features = ["derive"] } | ||
env_logger = "0.11.3" | ||
log = "0.4.21" | ||
clap = { version = "4.5.16", features = ["derive"] } | ||
env_logger = "0.11.5" | ||
log = "0.4.22" | ||
sailfish = { version = "0.8.3" } | ||
|
||
[profile.test-release] | ||
|
@@ -37,6 +35,6 @@ debug-assertions = true | |
[profile.production] | ||
inherits = "release" | ||
lto = "fat" | ||
codegen-units = 1 | ||
strip = true | ||
codegen-units = 1 | ||
opt-level = "z" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[toolchain] | ||
channel = "1.74.0" | ||
channel = "1.80.0" | ||
components = [ "rustfmt", "clippy" ] | ||
profile = "minimal" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters