-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (29 loc) · 995 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
[package]
name = "arak"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive", "env"] }
rusqlite = { version = "0.30.0", features = ["extra_check"] }
# Waiting on https://github.com/nlordell/ethrpc-rs/pull/9
#ethrpc = { version = "0.0.8", features = ["http"] }
ethrpc = { git = "https://github.com/bh2smith/ethrpc-rs", rev = "4eb7466", features = [
"http",
] }
serde = { version = "1", features = ["derive"] }
solabi = "0.2.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
toml = "0.8.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = { version = "2", features = ["serde"] }
futures = "0.3"
tokio-postgres = { version = "0.7", features = ["with-time-0_3"] }
pg_bigdecimal = "0.1.5"
dotenv = "0.15.0"
chrono = { version = "0.4.31", default-features = false, features = ["std"] }
[dev-dependencies]
hex-literal = "0.4"