61c1646b43
* EIP-712 impl * added more tests * removed size parsing unwrap * corrected TYPE_REGEX to disallow zero sized fixed length arrays, replaced LinkedHashSet with IndexSet, added API spec to docs, fixed Type::Byte encoding branch * use Option<u64> instead of u64 for Type::Array::Length * replace `.iter()` with `.values()` Co-Authored-By: seunlanlege <seunlanlege@gmail.com> * tabify eip712.rs * use proper comments for docs * Cargo.lock: revert unrelated changes * tabify encode.rs
24 lines
435 B
TOML
24 lines
435 B
TOML
[package]
|
|
name = "eip712"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
serde_derive = "1.0"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
ethabi = "6.0"
|
|
keccak-hash = "0.1"
|
|
ethereum-types = "0.4"
|
|
failure = "0.1"
|
|
itertools = "0.7"
|
|
failure_derive = "0.1"
|
|
lazy_static = "1.1"
|
|
toolshed = "0.4"
|
|
regex = "1.0"
|
|
validator = "0.8"
|
|
validator_derive = "0.8"
|
|
lunarity-lexer = "0.1"
|
|
rustc-hex = "2.0"
|
|
indexmap = "1.0.2"
|