Skip to content

Commit

Permalink
chore: reverts commit 77e65e0.
Browse files Browse the repository at this point in the history
  • Loading branch information
hopeyen committed Aug 3, 2023
1 parent 77e65e0 commit 1e37ca3
Show file tree
Hide file tree
Showing 8 changed files with 564 additions and 1 deletion.
23 changes: 23 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]

members = ["subgraph-radio", "test-sender", "test-utils", "test-runner"]
members = ["subgraph-radio", "test-sender", "test-utils", "test-runner", "one-shot"]
resolver = "2"

[profile.dev]
Expand Down
40 changes: 40 additions & 0 deletions one-shot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[package]
name = "one-shot"
version = "0.1.0"
edition = "2021"
authors = ["GraphOps (axiomatic-aardvark, hopeyen)"]
description = "One-shot messaging using Graphcast SDK (can be separated to a different repo)"
license = "Apache-2.0"
repository = "https://github.com/graphops/subgraph-radio"
keywords = ["graphprotocol", "data-integrity", "Indexer", "waku", "p2p"]
categories = ["network-programming", "web-programming::http-client"]

[dependencies]
graphcast-sdk = "0.4.0"
subgraph-radio = { path = "../subgraph-radio" }
once_cell = "1.17"
chrono = "0.4"
serde = { version = "1.0.163", features = ["rc"] }
serde_json = "1.0.96"
derive-getters = "0.2.1"
tokio = { version = "1.28.1", features = ["full", "rt"] }
anyhow = "1.0"
thiserror = "1.0.40"
ethers = "2.0.4"
partial_application = "0.2.1"
dotenv = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"ansi",
"fmt",
"std",
"json",
] }
clap = { version = "3.2.25", features = ["derive", "env"] }

[dev-dependencies.cargo-husky]
version = "1"
default-features = false
# Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-clippy"]
Loading

0 comments on commit 1e37ca3

Please sign in to comment.