-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (73 loc) · 2.25 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
79
80
81
[package]
name = "envio-hyperindex-blueprint"
version = "0.1.0"
edition = "2021"
description = "A Tangle Blueprint for running envio indexers"
authors = ["Drew Stone <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://tangle.tools"
repository = "https://github.com/tangle-network/envio-hyperindex-blueprint"
readme = "README.md"
categories = ["cryptography", "cryptography::cryptocurrencies"]
keywords = ["tangle", "blueprint", "avs"]
rust-version = "1.81"
[dependencies]
tracing = "0.1"
async-trait = "0.1"
color-eyre = "0.6"
structopt = "0.3.26"
tokio = { version = "^1", default-features = false, features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["parking_lot", "env-filter"] }
serde_json = "1.0.133"
serde = "1.0.215"
lazy_static = "1.5.0"
alloy-json-abi = { version = "0.8.12", features = ["serde_json"] }
alloy-sol-types = "0.8.12"
alloy-primitives = "0.8.12"
tempfile = "3.14.0"
uuid = "1.11.0"
thiserror = "2.0.3"
schemars = "0.8"
kube = { version = "0.96.0", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.23.0", features = ["v1_31"] }
gadget-sdk = { version = "0.4.0", default-features = false, features = ["getrandom"] }
bytes = "1.8.0"
reqwest = "0.12.9"
wiremock = "0.6.2"
fake = "3.0.1"
rand = "0.8.5"
regex = "1.11.1"
envio = { git = "https://github.com/enviodev/hyperindex", branch = "main" }
ethers = { version = "2.0.14" }
anyhow = "1.0.93"
expectrl = "0.7.1"
enigo = "0.3.0"
rexpect = "0.6.0"
[dev-dependencies]
k8s-openapi = { version = "0.23.0", features = ["v1_31"] }
rustls = { version = "0.23.17", features = ["aws_lc_rs"] }
aws-lc-rs = "1.11.0"
tower-test = "0.4.0"
http = "1.1.0"
http-body-util = "0.1.2"
hyper = "1.5.1"
[build-dependencies]
blueprint-metadata = "0.1.6"
[features]
default = ["std"]
std = ["gadget-sdk/std"]
[lib]
path = "src/lib.rs"
[[bin]]
name = "envio-hyperindex-blueprint"
path = "src/main.rs"
[package.metadata.blueprint]
manager = { Evm = "HelloBlueprint" }
[[package.metadata.gadget.Native.sources]]
owner = "tangle-network"
repo = "envio-hyperindex-blueprint"
tag = "0.1.0"
binaries = [
{ arch = "Amd64", os = "Linux", name = "amd64-linux-envio-hyperindex-blueprint-gadget" },
{ arch = "Arm64", os = "Linux", name = "arm64-linux-envio-hyperindex-blueprint-gadget" },
]