-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1266 from multiversx/generate-full-cargo
Generate full cargo
- Loading branch information
Showing
25 changed files
with
411 additions
and
68 deletions.
There are no files selected for viewing
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,7 +1,6 @@ | ||
[package] | ||
name = "large-storage-wasm" | ||
version = "0.0.0" | ||
authors = ["Andrei Marinica <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
1 change: 0 additions & 1 deletion
1
contracts/benchmarks/mappers/linked-list-repeat/wasm/Cargo.toml
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,7 +1,6 @@ | ||
[package] | ||
name = "linked-list-repeat-wasm" | ||
version = "0.0.0" | ||
authors = ["Claudiu-Marcel Bruda <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,7 +1,6 @@ | ||
[package] | ||
name = "map-repeat-wasm" | ||
version = "0.0.0" | ||
authors = ["Claudiu-Marcel Bruda <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,7 +1,6 @@ | ||
[package] | ||
name = "queue-repeat-wasm" | ||
version = "0.0.0" | ||
authors = ["Claudiu-Marcel Bruda <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,7 +1,6 @@ | ||
[package] | ||
name = "set-repeat-wasm" | ||
version = "0.0.0" | ||
authors = ["Claudiu-Marcel Bruda <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
1 change: 0 additions & 1 deletion
1
contracts/benchmarks/mappers/single-value-repeat/wasm/Cargo.toml
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,7 +1,6 @@ | ||
[package] | ||
name = "single-value-repeat-wasm" | ||
version = "0.0.0" | ||
authors = ["Claudiu-Marcel Bruda <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,7 +1,6 @@ | ||
[package] | ||
name = "vec-repeat-wasm" | ||
version = "0.0.0" | ||
authors = ["Claudiu-Marcel Bruda <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,7 +1,6 @@ | ||
[package] | ||
name = "send-tx-repeat-wasm" | ||
version = "0.0.0" | ||
authors = ["Dorin Iancu <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,7 +1,6 @@ | ||
[package] | ||
name = "str-repeat-wasm" | ||
version = "0.0.0" | ||
authors = ["Andrei Marinica <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,7 +1,6 @@ | ||
[package] | ||
name = "multiversx-price-aggregator-sc-wasm" | ||
version = "0.0.0" | ||
authors = [ "Claudiu-Marcel Bruda <[email protected]>",] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,17 +1,11 @@ | ||
[package] | ||
name = "multiversx-wegld-swap-sc-wasm" | ||
version = "0.0.0" | ||
authors = [ "Dorin Iancu <[email protected]>",] | ||
edition = "2021" | ||
publish = false | ||
|
||
[lib] | ||
crate-type = [ "cdylib",] | ||
|
||
[workspace] | ||
members = [ ".",] | ||
|
||
[dev-dependencies] | ||
crate-type = ["cdylib"] | ||
|
||
[profile.release] | ||
codegen-units = 1 | ||
|
@@ -26,3 +20,6 @@ path = ".." | |
[dependencies.multiversx-sc-wasm-adapter] | ||
version = "0.44.0" | ||
path = "../../../../framework/wasm-adapter" | ||
|
||
[workspace] | ||
members = ["."] |
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,7 +1,12 @@ | ||
# Code generated by the multiversx-sc multi-contract system. DO NOT EDIT. | ||
|
||
# ########################################## | ||
# ############## AUTO-GENERATED ############# | ||
# ########################################## | ||
|
||
[package] | ||
name = "multisig-full-wasm" | ||
version = "0.0.0" | ||
authors = ["Andrei Marinica <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,7 +1,12 @@ | ||
# Code generated by the multiversx-sc multi-contract system. DO NOT EDIT. | ||
|
||
# ########################################## | ||
# ############## AUTO-GENERATED ############# | ||
# ########################################## | ||
|
||
[package] | ||
name = "multisig-view-wasm" | ||
version = "0.0.0" | ||
authors = ["Andrei Marinica <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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,7 +1,12 @@ | ||
# Code generated by the multiversx-sc multi-contract system. DO NOT EDIT. | ||
|
||
# ########################################## | ||
# ############## AUTO-GENERATED ############# | ||
# ########################################## | ||
|
||
[package] | ||
name = "multisig-wasm" | ||
version = "0.0.0" | ||
authors = ["Andrei Marinica <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
|
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
Oops, something went wrong.