Skip to content

Commit

Permalink
Framework upgrade 0.51.1
Browse files Browse the repository at this point in the history
  • Loading branch information
CostinCarabas committed Jul 10, 2024
1 parent fa09d92 commit 4b3c247
Show file tree
Hide file tree
Showing 40 changed files with 300 additions and 1,638 deletions.
1,570 changes: 114 additions & 1,456 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions bridge-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ path = "../common/tx-batch-module"
path = "../esdt-safe"

[dependencies.multiversx-sc]
version = "=0.50.4"
version = "=0.51.1"

[dependencies.multiversx-sc-modules]
version = "0.50.4"
version = "0.51.1"

[dependencies.adder]
git = "https://github.com/multiversx/mx-contracts-rs"
rev = "f37a078"
rev = "84aa882"

[dev-dependencies]
num-bigint = "0.4.2"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.50.4"
version = "=0.51.1"
4 changes: 2 additions & 2 deletions bridge-proxy/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ authors = ["you"]
[dependencies.bridge-proxy]
path = ".."

[dependencies.multiversx-sc-meta]
version = "=0.50.4"
[dependencies.multiversx-sc-meta-lib]
version = "=0.51.1"
2 changes: 1 addition & 1 deletion bridge-proxy/meta/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
fn main() {
multiversx_sc_meta::cli_main::<bridge_proxy::AbiProvider>();
multiversx_sc_meta_lib::cli_main::<bridge_proxy::AbiProvider>();
}
42 changes: 21 additions & 21 deletions bridge-proxy/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bridge-proxy/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "=0.50.4"
version = "=0.51.1"

[workspace]
members = ["."]
6 changes: 3 additions & 3 deletions bridged-tokens-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ path = "src/lib.rs"
path = "../common/transaction"

[dependencies.multiversx-sc]
version = "=0.50.4"
version = "=0.51.1"

[dependencies.multiversx-sc-modules]
version = "=0.50.4"
version = "=0.51.1"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.50.4"
version = "=0.51.1"
4 changes: 2 additions & 2 deletions bridged-tokens-wrapper/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ publish = false
[dependencies.bridged-tokens-wrapper]
path = ".."

[dependencies.multiversx-sc-meta]
version = "=0.50.4"
[dependencies.multiversx-sc-meta-lib]
version = "=0.51.1"
default-features = false
2 changes: 1 addition & 1 deletion bridged-tokens-wrapper/meta/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
fn main() {
multiversx_sc_meta::cli_main::<bridged_tokens_wrapper::AbiProvider>();
multiversx_sc_meta_lib::cli_main::<bridged_tokens_wrapper::AbiProvider>();
}
36 changes: 18 additions & 18 deletions bridged-tokens-wrapper/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bridged-tokens-wrapper/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "=0.50.4"
version = "=0.51.1"

[workspace]
members = ["."]
2 changes: 1 addition & 1 deletion common/eth-address/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2018"
path = "src/lib.rs"

[dependencies.multiversx-sc]
version = "=0.50.4"
version = "=0.51.1"
4 changes: 2 additions & 2 deletions common/fee-estimator-module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["dorin-iancu <[email protected]>"]
edition = "2018"

[dependencies.multiversx-sc]
version = "=0.50.4"
version = "=0.51.1"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.50.4"
version = "=0.51.1"
4 changes: 2 additions & 2 deletions common/max-bridged-amount-module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["dorin-iancu <[email protected]>"]
edition = "2018"

[dependencies.multiversx-sc]
version = "=0.50.4"
version = "=0.51.1"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.50.4"
version = "=0.51.1"
4 changes: 2 additions & 2 deletions common/token-module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
path = "../fee-estimator-module"

[dependencies.multiversx-sc]
version = "=0.50.4"
version = "=0.51.1"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.50.4"
version = "=0.51.1"
2 changes: 1 addition & 1 deletion common/transaction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ path = "src/lib.rs"
path = "../eth-address"

[dependencies.multiversx-sc]
version = "=0.50.4"
version = "=0.51.1"
4 changes: 2 additions & 2 deletions common/tx-batch-module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ authors = ["dorin-iancu <[email protected]>"]
edition = "2018"

[dependencies.multiversx-sc]
version = "=0.50.4"
version = "=0.51.1"

[dependencies.transaction]
path = "../transaction"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.50.4"
version = "=0.51.1"
8 changes: 4 additions & 4 deletions esdt-safe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ path = "../common/tx-batch-module"
path = "../common/max-bridged-amount-module"

[dependencies.multiversx-price-aggregator-sc]
version = "=0.50.4"
version = "=0.51.1"

[dependencies.multiversx-sc]
version = "=0.50.4"
version = "=0.51.1"

[dependencies.multiversx-sc-modules]
version = "=0.50.4"
version = "=0.51.1"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.50.4"
version = "=0.51.1"
4 changes: 2 additions & 2 deletions esdt-safe/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ publish = false
[dependencies.esdt-safe]
path = ".."

[dependencies.multiversx-sc-meta]
version = "=0.50.4"
[dependencies.multiversx-sc-meta-lib]
version = "=0.51.1"
default-features = false
Loading

0 comments on commit 4b3c247

Please sign in to comment.