Skip to content

Commit

Permalink
upgrade to 0.43.4
Browse files Browse the repository at this point in the history
  • Loading branch information
alyn509 committed Oct 2, 2023
1 parent 765e1bc commit 0c7fab9
Show file tree
Hide file tree
Showing 87 changed files with 163 additions and 291 deletions.
6 changes: 2 additions & 4 deletions contracts/adder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ publish = false

[lib]
path = "src/adder.rs"

[dependencies.multiversx-sc]
version = "0.43.3"

version = "0.43.4"
[dev-dependencies.multiversx-sc-scenario]
version = "0.43.3"
version = "0.43.4"
18 changes: 12 additions & 6 deletions contracts/adder/interact/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
[[bin]]
name = "adder-interact"
path = "src/adder_interact.rs"

[package]
name = "adder-interact"
version = "0.0.0"
authors = ["Ovidiu Stinga <[email protected]>"]
edition = "2021"
publish = false

[[bin]]
name = "adder-interact"
path = "src/adder_interact.rs"

[dependencies]
clap = { version = "4.1.0", features = ["derive", "cargo"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.7.2"

[dependencies.clap]
version = "4.1.0"
features = ["derive", "cargo"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.adder]
path = ".."

Expand Down
3 changes: 1 addition & 2 deletions contracts/adder/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ name = "adder-meta"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies.adder]
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.43.3"
version = "0.43.4"
4 changes: 1 addition & 3 deletions contracts/adder/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,17 @@ publish = false

[lib]
crate-type = ["cdylib"]

[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"

[dependencies.adder]
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.3"
version = "0.43.4"

[workspace]
members = ["."]
8 changes: 3 additions & 5 deletions contracts/bonding-curve-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ publish = false

[lib]
path = "src/bonding_curve_contract.rs"

[dependencies.multiversx-sc]
version = "0.43.3"
version = "0.43.4"

[dependencies.multiversx-sc-modules]
version = "0.43.3"

version = "0.43.4"
[dev-dependencies.multiversx-sc-scenario]
version = "0.43.3"
version = "0.43.4"
3 changes: 1 addition & 2 deletions contracts/bonding-curve-contract/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ version = "0.0.0"
authors = ["Alin Cruceat <[email protected]>"]
edition = "2021"
publish = false

[dependencies.bonding-curve-contract]
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.43.3"
version = "0.43.4"
4 changes: 1 addition & 3 deletions contracts/bonding-curve-contract/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,17 @@ publish = false

[lib]
crate-type = ["cdylib"]

[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"

[dependencies.bonding-curve-contract]
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.3"
version = "0.43.4"

[workspace]
members = ["."]
9 changes: 4 additions & 5 deletions contracts/check-pause/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ path = "src/check_pause.rs"
[dev-dependencies]
num-bigint = "0.4.2"

[dev-dependencies.multiversx-sc-scenario]
version = "0.43.4"
[dependencies.multiversx-sc]
version = "0.43.3"
version = "0.43.4"

[dependencies.multiversx-sc-modules]
version = "0.43.3"

[dev-dependencies.multiversx-sc-scenario]
version = "0.43.3"
version = "0.43.4"
3 changes: 1 addition & 2 deletions contracts/check-pause/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ version = "0.0.0"
edition = "2021"
publish = false
authors = ["Alin Cruceat <[email protected]>"]

[dependencies.check-pause]
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.43.3"
version = "0.43.4"
4 changes: 1 addition & 3 deletions contracts/check-pause/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ crate-type = ["cdylib"]
members = ["."]

[dev-dependencies]

[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"

[dependencies.check-pause]
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.3"
version = "0.43.4"
9 changes: 4 additions & 5 deletions contracts/crowdfunding-esdt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@ publish = false

[lib]
path = "src/crowdfunding_esdt.rs"

[dependencies.multiversx-sc]
version = "0.43.3"

[dev-dependencies.multiversx-sc-scenario]
version = "0.43.3"
version = "0.43.4"

[dev-dependencies]
num-bigint = "0.4.2"
num-traits = "0.2"
hex = "0.4"

[dev-dependencies.multiversx-sc-scenario]
version = "0.43.4"
3 changes: 1 addition & 2 deletions contracts/crowdfunding-esdt/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ version = "0.0.0"
authors = ["Andrei Marinica <[email protected]>"]
edition = "2021"
publish = false

[dependencies.crowdfunding-esdt]
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.43.3"
version = "0.43.4"
4 changes: 1 addition & 3 deletions contracts/crowdfunding-esdt/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,17 @@ publish = false

[lib]
crate-type = ["cdylib"]

[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"

[dependencies.crowdfunding-esdt]
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.3"
version = "0.43.4"

[workspace]
members = ["."]
6 changes: 2 additions & 4 deletions contracts/crypto-bubbles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ publish = false

[lib]
path = "src/crypto_bubbles.rs"

[dependencies.multiversx-sc]
version = "0.43.3"

version = "0.43.4"
[dev-dependencies.multiversx-sc-scenario]
version = "0.43.3"
version = "0.43.4"
3 changes: 1 addition & 2 deletions contracts/crypto-bubbles/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ version = "0.0.0"
authors = ["Andrei Marinica <[email protected]>"]
edition = "2021"
publish = false

[dependencies.crypto-bubbles]
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.43.3"
version = "0.43.4"
4 changes: 1 addition & 3 deletions contracts/crypto-bubbles/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,17 @@ publish = false

[lib]
crate-type = ["cdylib"]

[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"

[dependencies.crypto-bubbles]
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.3"
version = "0.43.4"

[workspace]
members = ["."]
3 changes: 1 addition & 2 deletions contracts/crypto-kitties/common/kitty/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ publish = false

[lib]
path = "src/lib.rs"

[dependencies.multiversx-sc]
version = "0.43.3"
version = "0.43.4"

[dependencies.random]
version = "0.0.0"
Expand Down
3 changes: 1 addition & 2 deletions contracts/crypto-kitties/common/random/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ edition = "2021"

[lib]
path = "src/lib.rs"

[dependencies.multiversx-sc]
version = "0.43.3"
version = "0.43.4"
6 changes: 2 additions & 4 deletions contracts/crypto-kitties/kitty-auction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ publish = false

[lib]
path = "src/lib.rs"

[dependencies.kitty]
version = "0.0.0"
path = "../common/kitty"
Expand All @@ -17,7 +16,6 @@ version = "0.0.0"
path = "../kitty-ownership"

[dependencies.multiversx-sc]
version = "0.43.3"

version = "0.43.4"
[dev-dependencies.multiversx-sc-scenario]
version = "0.43.3"
version = "0.43.4"
3 changes: 1 addition & 2 deletions contracts/crypto-kitties/kitty-auction/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ name = "kitty-auction-meta"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies.kitty-auction]
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.43.3"
version = "0.43.4"
4 changes: 1 addition & 3 deletions contracts/crypto-kitties/kitty-auction/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,14 @@ crate-type = ["cdylib"]

[workspace]
members = ["."]

[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"

[dependencies.kitty-auction]
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.3"
version = "0.43.4"
7 changes: 2 additions & 5 deletions contracts/crypto-kitties/kitty-genetic-alg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ publish = false

[lib]
path = "src/lib.rs"


[dependencies.kitty]
version = "0.0.0"
path = "../common/kitty"
Expand All @@ -18,7 +16,6 @@ version = "0.0.0"
path = "../common/random"

[dependencies.multiversx-sc]
version = "0.43.3"

version = "0.43.4"
[dev-dependencies.multiversx-sc-scenario]
version = "0.43.3"
version = "0.43.4"
3 changes: 1 addition & 2 deletions contracts/crypto-kitties/kitty-genetic-alg/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ name = "kitty-genetic-alg-meta"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies.kitty-genetic-alg]
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.43.3"
version = "0.43.4"
4 changes: 1 addition & 3 deletions contracts/crypto-kitties/kitty-genetic-alg/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,14 @@ crate-type = ["cdylib"]

[workspace]
members = ["."]

[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"

[dependencies.kitty-genetic-alg]
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.43.3"
version = "0.43.4"
6 changes: 2 additions & 4 deletions contracts/crypto-kitties/kitty-ownership/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ publish = false

[lib]
path = "src/lib.rs"

[dependencies.kitty]
version = "0.0.0"
path = "../common/kitty"
Expand All @@ -21,7 +20,6 @@ version = "0.0.0"
path = "../kitty-genetic-alg"

[dependencies.multiversx-sc]
version = "0.43.3"

version = "0.43.4"
[dev-dependencies.multiversx-sc-scenario]
version = "0.43.3"
version = "0.43.4"
Loading

0 comments on commit 0c7fab9

Please sign in to comment.