Skip to content

Commit

Permalink
elrond-wasm 0.16.1, mandos 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed May 18, 2021
1 parent 2f03cb9 commit 725085d
Show file tree
Hide file tree
Showing 115 changed files with 287 additions and 285 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- `pow`, `log2`, `sqrt`
- cryptography: elliptic curves

## [elrond-wasm 0.16.1, mandos 0.7.1] - 2021-05-18
- Improvements in mandos-rs: username, contract owner, nested async calls

## [elrond-wasm 0.16.0, mandos 0.7.0, elrond-codec 0.5.3] - 2021-05-14
### Major redesign of important framework components:
Expand Down
8 changes: 4 additions & 4 deletions contracts/benchmarks/send-tx-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/benchmarks/send-tx-repeat/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/benchmarks/str-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/benchmarks/str-repeat/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/adder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-debug"
4 changes: 2 additions & 2 deletions contracts/examples/adder/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/adder/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/crowdfunding-erc20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ wasm-output-mode = ["elrond-wasm-node"]
path = "../erc20"

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-debug"

4 changes: 2 additions & 2 deletions contracts/examples/crowdfunding-erc20/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/crowdfunding-erc20/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/crowdfunding-esdt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-debug"

4 changes: 2 additions & 2 deletions contracts/examples/crowdfunding-esdt/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/crowdfunding-esdt/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/crypto-bubbles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-debug"
4 changes: 2 additions & 2 deletions contracts/examples/crypto-bubbles/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/crypto-bubbles/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
4 changes: 2 additions & 2 deletions contracts/examples/crypto-kitties/common/kitty/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ publish = false
path = "src/lib.rs"

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../../../elrond-wasm-derive"

[dependencies.random]
Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/crypto-kitties/kitty-auction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ version = "0.0.0"
path = "../kitty-ownership"

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-debug"
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ default-features = false
path = ".."

[dependencies.elrond-wasm-output]
version = "0.16.0"
version = "0.16.1"
path = "../../../../../elrond-wasm-output"
features = [ "wasm-output-mode",]
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ version = "0.0.0"
path = "../common/random"

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-debug"
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ default-features = false
path = ".."

[dependencies.elrond-wasm-output]
version = "0.16.0"
version = "0.16.1"
path = "../../../../../elrond-wasm-output"
features = [ "wasm-output-mode",]
8 changes: 4 additions & 4 deletions contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ version = "0.0.0"
path = "../kitty-genetic-alg"

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-debug"
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ default-features = false
path = ".."

[dependencies.elrond-wasm-output]
version = "0.16.0"
version = "0.16.1"
path = "../../../../../elrond-wasm-output"
features = [ "wasm-output-mode",]
8 changes: 4 additions & 4 deletions contracts/examples/egld-esdt-swap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = [ "elrond-wasm-node",]

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../elrond-wasm-debug"
4 changes: 2 additions & 2 deletions contracts/examples/egld-esdt-swap/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.0"
version = "0.16.1"
path = "../../../../elrond-wasm-debug"
Loading

0 comments on commit 725085d

Please sign in to comment.