-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
33 lines (30 loc) · 955 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
25
26
27
28
29
30
31
32
[package]
name = "eth-tx-manager"
license = "Apache-2.0"
description = "A library for submitting transactions to the blockchain."
homepage = "https://github.com/cartesi"
repository = "https://github.com/cartesi/tx-manager"
readme = "README.md"
version = "0.10.1"
edition = "2021"
authors = [
"Renan Santos <[email protected]>",
"Gabriel Coutinho de Paula <[email protected]>"
]
[dependencies]
async-recursion = "1.0"
async-trait = "0.1"
clap = { version = "4.1", features = ["derive", "env"] }
ethers = { version = "1.0", features = ["rustls"] }
reqwest = { version = "0.11", features = ["json"] }
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1", features = ["fs", "macros"] }
tracing = "0.1"
[dev-dependencies]
ethers = { version = "1.0", features = ["abigen"] }
hex = "0.4"
serial_test = "2.0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
utilities = { path = "tests/utilities" }