-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
24 lines (21 loc) · 836 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "evmscan"
version = "0.6.0"
edition = "2021"
authors = ["Wasin Thonkaew <[email protected]>"]
description = "Rust binding of non-async API for EVM-based chains which provided by team behinds etherscan.io, bscscan.com, and polygonscan.com"
license = "MIT"
keywords = ["offchain", "api", "polygonscan", "bscscan", "etherscan"]
categories = ["api-bindings"]
readme = "README.md"
repository = "https://github.com/haxpor/evmscan"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
isahc = { version = "1.6", features = ["json"] }
url = "2.2.2"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
primitive-types = { version = "0.11.1", features = ["impl-serde", "fp-conversion"] }
regex = "1.5.5"
[dev-dependencies]
lazy_static = "1.4.0"