Skip to content

Commit

Permalink
move to new crate
Browse files Browse the repository at this point in the history
  • Loading branch information
grooviegermanikus committed Aug 7, 2024
1 parent e37f98b commit 0ac6da5
Show file tree
Hide file tree
Showing 5 changed files with 113 additions and 1 deletion.
87 changes: 87 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = [
"connector",
"chaindata_standalone"
]
resolver = "2"

Expand Down
25 changes: 25 additions & 0 deletions chaindata_standalone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[package]
name = "chaindata_standalone"
version = "0.1.0"
edition = "2021"

[dependencies]
tracing = "0.1"
tracing-subscriber = "0.3"

tokio = { workspace = true }
tokio-stream = { workspace = true }


log = { workspace = true }
anyhow = { workspace = true }

itertools = { workspace = true }
futures = { workspace = true }

async-channel = { workspace = true }
async-trait = { workspace = true }

mango-feeds-connector = { path = "../connector" }

solana-sdk = { workspace = true }
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use std::thread::sleep;
use log::info;

use tokio::sync::broadcast;
use warp::header::value;

use mango_feeds_connector::chain_data::ChainData;
use mango_feeds_connector::{AccountWrite, SlotUpdate};
Expand Down
File renamed without changes.

0 comments on commit 0ac6da5

Please sign in to comment.