-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
78 lines (67 loc) · 2.46 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "ethui-indexer"
edition = "2021"
version = "0.0.1"
license-file = "./LICENSE"
homepage = "https://github.com/ethui"
repository = "https://github.com/ethui/indexer"
exclude = [".github/"]
authors = ["Miguel Palhas <[email protected]>"]
[dependencies]
tokio = { version = "1.33", features = ["full", "sync"] }
tokio-util = { version = "0.7.10", features = ["rt"] }
clap = { version = "4.4.8", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive", "std"] }
futures = "0.3.28"
toml = "0.8.8"
async-trait = "0.1.74"
# tracing
color-eyre = "0.6.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# web
axum = { version = "0.7.2", features = ["tracing"] }
tower = "0.4.13"
tower-http = { version = "0.5.0", features = ["cors", "trace"] }
jsonwebtoken = "9.2.0"
serde_json = "1.0.108"
axum-extra = { version = "0.9.0", features = ["typed-header"] }
# db
diesel = { version = "2.2.3", features = ["postgres", "chrono", "numeric"] }
diesel-async = { version = "0.5", features = [
"postgres",
"deadpool",
"async-connection-wrapper",
] }
diesel_migrations = { version = "2.1.0", features = ["postgres"] }
chrono = { version = "0.4.31", features = ["serde"], default-features = false }
bigdecimal = { version = "0.4.2", default-features = false }
# reth
reth-db = { git = "https://github.com/paradigmxyz/reth", package = "reth-db", tag = "v1.0.5" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", package = "reth-primitives", tag = "v1.0.5" }
reth_provider = { git = "https://github.com/paradigmxyz/reth", package = "reth-provider", tag = "v1.0.5" }
reth-rpc-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.0.5" }
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.0.5" }
# ethers
ethers-core = { version = "2.0", default-features = false }
ethers-signers = { version = "2.0", default-features = false }
ethers-contract-derive = { version = "2.0", default-features = false }
# alloy
alloy-primitives = { version = "0.7.2", features = ["serde"] }
# cuckoo
scalable_cuckoo_filter = "0.2.3"
rand = { version = "0.8.5", default-features = false, features = ["std_rng"] }
thiserror = "1.0.61"
serial_test = "3.1.1"
url = "2.5.2"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_tokio"] }
lazy_static = "1.4.0"
rstest = "0.18.2"
tempfile = "3.10"
[[bench]]
name = "provider_concurrency"
harness = false
[[bench]]
name = "usdc_holders_backfill"
harness = false