forked from open-web3-stack/open-runtime-module-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use workspace deps (open-web3-stack#960)
* use workspace deps * fix * fix * fix * fix * bump
- Loading branch information
Showing
56 changed files
with
422 additions
and
391 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
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
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 |
---|---|---|
|
@@ -3,37 +3,37 @@ name = "orml-benchmarking" | |
description = "Provide macro to benchmark Substrate runtime." | ||
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/benchmarking" | ||
license = "Apache-2.0" | ||
version = "0.4.1-dev" | ||
version = "0.5.0-dev" | ||
authors = ["Laminar Developers <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } | ||
log = { version = "0.4.20", default-features = false } | ||
parity-scale-codec = { workspace = true } | ||
log = { workspace = true } | ||
paste = "1.0.7" | ||
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } | ||
serde = { version = "1.0.136", optional = true } | ||
serde = { workspace = true, optional = true } | ||
|
||
frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false , branch = "release-polkadot-v1.1.0" } | ||
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false , branch = "release-polkadot-v1.1.0" } | ||
sp-api = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false , branch = "release-polkadot-v1.1.0" } | ||
sp-io = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false , branch = "release-polkadot-v1.1.0" } | ||
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false , branch = "release-polkadot-v1.1.0" } | ||
sp-runtime-interface = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false , branch = "release-polkadot-v1.1.0" } | ||
sp-std = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false , branch = "release-polkadot-v1.1.0" } | ||
sp-storage = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false , branch = "release-polkadot-v1.1.0" } | ||
frame-benchmarking = { workspace = true } | ||
frame-support = { workspace = true } | ||
sp-api = { workspace = true } | ||
sp-io = { workspace = true } | ||
sp-runtime = { workspace = true } | ||
sp-runtime-interface = { workspace = true } | ||
sp-std = { workspace = true } | ||
sp-storage = { workspace = true } | ||
|
||
[dev-dependencies] | ||
hex-literal = "0.4.1" | ||
|
||
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } | ||
frame-system = { workspace = true, features = ["std"] } | ||
|
||
[features] | ||
default = [ "std" ] | ||
std = [ | ||
"serde", | ||
|
||
"codec/std", | ||
"parity-scale-codec/std", | ||
"frame-benchmarking/std", | ||
"frame-support/std", | ||
"log/std", | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "orml-build-script-utils" | |
description = "Crate with utility functions for `build.rs` scripts." | ||
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/build-script-utils" | ||
license = "Apache-2.0" | ||
version = "0.4.1-dev" | ||
version = "0.5.0-dev" | ||
authors = ["Parity Technologies <[email protected]>", "Laminar Developers <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
Oops, something went wrong.