forked from althea-net/web30
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 1.03 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
[package]
authors = ["Michal Papierski", "Jehan Tremback", "Justin Kilpatrick", "Elvis Dedic"]
description = "Async endian safe web3 library"
edition = "2021"
license = "Apache-2.0"
name = "web30"
repository = "https://github.com/onomyprotocol/web30.git"
version = "0.18.3"
[dependencies]
clarity = { git = "https://github.com/onomyprotocol/clarity.git", rev = "3e875b608a2d9302c8b23dd40dc8705901db230c" }
hyper = { version = "0.14", features = ["full"] }
hyper-tls = "0.5.0"
lazy_static = "1.4"
log = "0.4"
num = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tokio = { version = "1.20", features = ["macros", "time"] }
u64_array_bigints = { version = "0.3", default-features = false, features = ["serde_support"] }
[dev-dependencies]
env_logger = "0.9"
[features]
default = ["warn_on_json_error"]
use_xdai_blocks = []
debug_requests = []
debug_responses = []
warn_on_json_error = []
warn_on_rpc_error = []
extra_finalization = []
# enables some globals for programmatically recording all JSON RPC requests and responses
record_json_rpc = []