forked from rust-ethereum/ethabi
-
Notifications
You must be signed in to change notification settings - Fork 2
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 rust-ethereum#121 from paritytech/dp/chore/update-…
…deps-at-v5.1 Backport fixes and update deps at v5.1
- Loading branch information
Showing
19 changed files
with
424 additions
and
329 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,3 +1,4 @@ | ||
target | ||
*.swp | ||
*.swo | ||
.vscode |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ethabi-contract" | ||
version = "5.1.0" | ||
version = "5.1.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
homepage = "https://github.com/paritytech/ethabi" | ||
license = "MIT" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "ethabi-derive" | ||
version = "5.1.0" | ||
version = "5.1.3" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
homepage = "https://github.com/paritytech/ethabi" | ||
license = "MIT" | ||
|
@@ -11,7 +11,7 @@ description = "Easy to use conversion of ethereum contract calls to bytecode." | |
proc-macro = true | ||
|
||
[dependencies] | ||
ethabi = { path = "../ethabi", version = "5.0" } | ||
ethabi = { path = "../ethabi", version = "5.1" } | ||
heck = "0.3" | ||
syn = "0.12.12" | ||
quote = "0.4.2" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
[package] | ||
name = "ethabi" | ||
version = "5.1.1" | ||
version = "5.1.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
homepage = "https://github.com/paritytech/ethabi" | ||
license = "MIT" | ||
keywords = ["ethereum", "eth", "abi", "solidity", "cli"] | ||
description = "Easy to use conversion of ethereum contract calls to bytecode." | ||
|
||
[dependencies] | ||
rustc-hex = "1.0" | ||
rustc-hex = "2.0" | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
serde_derive = "1.0" | ||
tiny-keccak = "1.3" | ||
error-chain = { version = "0.11", default-features = false } | ||
ethereum-types = "0.3" | ||
tiny-keccak = "1.4.2" | ||
error-chain = { version = "0.12", default-features = false } | ||
ethereum-types = "0.4" | ||
|
||
[dev-dependencies] | ||
hex-literal = "0.1.1" | ||
|
||
[features] | ||
backtrace = ["error-chain/backtrace"] | ||
|
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.