Skip to content

Commit

Permalink
Add missing Cargo.lock.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreibancioiu committed Sep 14, 2023
1 parent 0e288c3 commit 29fb6fe
Show file tree
Hide file tree
Showing 3 changed files with 224 additions and 6 deletions.
9 changes: 4 additions & 5 deletions contracts/core/wegld-swap/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
/target/
*/target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# The mxpy output
output
/output*/

# Mandos test trace
trace*.scen.json
217 changes: 217 additions & 0 deletions contracts/core/wegld-swap/wasm/Cargo.lock

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

4 changes: 3 additions & 1 deletion contracts/core/wegld-swap/wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
// Total number of exported functions: 9

#![no_std]
#![allow(internal_features)]

// 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 29fb6fe

Please sign in to comment.