Skip to content

Commit

Permalink
dependency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Oct 9, 2023
1 parent 0023a8a commit dcf8cae
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 80 deletions.
36 changes: 9 additions & 27 deletions contracts/foundry/foundrylike/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 contracts/foundry/foundrylike/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.4"
path = "../../../framework/base"
path = "../../../../framework/wasm-adapter"
3 changes: 3 additions & 0 deletions contracts/foundry/foundrylike/wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
// Total number of exported functions: 4

#![no_std]

// Configuration that works with rustc < 1.73.0.
// TODO: Recommended rustc version: 1.73.0 or newer.
#![feature(lang_items)]

multiversx_sc_wasm_adapter::allocator!();
Expand Down
36 changes: 9 additions & 27 deletions contracts/foundry/test_multisig/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 contracts/foundry/test_multisig/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.4"
path = "../../../framework/base"
path = "../../../../framework/wasm-adapter"
3 changes: 3 additions & 0 deletions contracts/foundry/test_multisig/wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
// Total number of exported functions: 3

#![no_std]

// Configuration that works with rustc < 1.73.0.
// TODO: Recommended rustc version: 1.73.0 or newer.
#![feature(lang_items)]

multiversx_sc_wasm_adapter::allocator!();
Expand Down
28 changes: 5 additions & 23 deletions contracts/foundry/test_testapi/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 contracts/foundry/test_testapi/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.4"
path = "../../../framework/base"
path = "../../../../framework/wasm-adapter"
3 changes: 3 additions & 0 deletions contracts/foundry/test_testapi/wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
// Total number of exported functions: 2

#![no_std]

// Configuration that works with rustc < 1.73.0.
// TODO: Recommended rustc version: 1.73.0 or newer.
#![feature(lang_items)]

multiversx_sc_wasm_adapter::allocator!();
Expand Down

0 comments on commit dcf8cae

Please sign in to comment.