This commit is contained in:
Georgios Konstantopoulos 2020-05-24 19:33:24 +03:00
parent 0f12894765
commit c085861b20
No known key found for this signature in database
GPG Key ID: FA607837CD26EDBC
3 changed files with 1416 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
/target
Cargo.lock

1412
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -5,12 +5,11 @@ authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
[dependencies]
ethereum-types = "0.9.2"
url = "2.1.1"
once_cell = "1.4.0"
ethereum-types = { version = "0.9.2", default-features = false, features = ["serialize"] }
url = { version = "2.1.1", default-features = false }
async-trait = "0.1.31"
reqwest = { version = "0.10.4", features = ["json"] }
serde = { version = "1.0.110", features = ["derive"] }
reqwest = { version = "0.10.4", default-features = false, features = ["json"] }
serde = { version = "1.0.110", default-features = false, features = ["derive"] }
serde_json = "1.0.53"
thiserror = "1.0.19"
rustc-hex = "2.1.0"