-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (39 loc) · 1006 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
33
34
35
36
37
38
39
40
[package]
name = "test-sender"
version = "0.0.1"
edition = "2021"
authors = ["GraphOps (axiomatic-aardvark, hopeyen)"]
description = "POI Radio e2e tests"
license = "Apache-2.0"
repository = "https://github.com/graphops/subgraph-radio"
keywords = [
"graphprotocol",
"data-integrity",
"Indexer",
"waku",
"p2p",
"tests",
]
categories = [
"network-programming",
"web-programming::http-client",
"e2e-tests",
]
[dependencies]
waku = { version = "=0.6.0", package = "waku-bindings" }
graphcast-sdk = { workspace = true }
clap = { workspace = true }
test-utils = { path = "../test-utils" }
subgraph-radio = { path = "../subgraph-radio" }
tokio = { version = "1.1.1", features = ["full", "rt"] }
tracing = "0.1"
tracing-subscriber = "0.3"
chrono = "0.4"
axum = "0.5"
tower-http = { version = "0.4.0", features = ["trace", "cors"] }
tower = "0.4.13"
serde = { version = "1.0.163", features = ["rc"] }
serde_json = "1.0.96"
serde_derive = "1.0"
prost = "0.11.9"
ethers = "2.0.7"