Skip to content

Commit 959b05b

Browse files
committed
rename to tips-common
1 parent 4169587 commit 959b05b

File tree

12 files changed

+28
-28
lines changed

12 files changed

+28
-28
lines changed

Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[workspace]
2-
members = ["crates/datastore", "crates/audit", "crates/ingress-rpc", "crates/maintenance", "crates/ingress-writer", "crates/tracing"]
2+
members = ["crates/datastore", "crates/audit", "crates/ingress-rpc", "crates/maintenance", "crates/ingress-writer", "crates/common"]
33
resolver = "2"
44

55
[workspace.dependencies]
66
tips-datastore = { path = "crates/datastore" }
77
tips-audit = { path = "crates/audit" }
88
tips-maintenance = { path = "crates/maintenance" }
99
tips-ingress-writer = { path = "crates/ingress-writer" }
10-
tips-tracing = { path = "crates/tracing" }
10+
tips-common = { path = "crates/common" }
1111

1212

1313
# Reth

crates/audit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "tips-audit"
88
path = "src/bin/main.rs"
99

1010
[dependencies]
11-
tips-tracing = { workspace = true }
11+
tips-common = { workspace = true }
1212
tokio = { workspace = true }
1313
tracing = { workspace = true }
1414
tracing-subscriber = { workspace = true }

crates/audit/src/bin/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use rdkafka::consumer::Consumer;
77
use tips_audit::{
88
create_kafka_consumer, KafkaMempoolArchiver, KafkaMempoolReader, S3MempoolEventReaderWriter,
99
};
10-
use tips_tracing::init_tracing;
10+
use tips_common::init_tracing;
1111
use tracing::{info, warn};
1212
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
1313

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "tips-tracing"
2+
name = "tips-common"
33
version = "0.1.0"
44
edition = "2021"
55

crates/ingress-rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "src/main.rs"
1010
[dependencies]
1111
tips-datastore.workspace = true
1212
tips-audit.workspace = true
13-
tips-tracing.workspace = true
13+
tips-common.workspace = true
1414
jsonrpsee.workspace = true
1515
alloy-rpc-types-mev.workspace = true
1616
alloy-primitives.workspace = true

crates/ingress-rpc/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use op_alloy_network::Optimism;
55
use rdkafka::ClientConfig;
66
use rdkafka::producer::FutureProducer;
77
use std::net::IpAddr;
8-
use tips_tracing::init_tracing;
8+
use tips_common::init_tracing;
99
use tracing::{info, warn};
1010
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
1111
use url::Url;

crates/ingress-writer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "src/main.rs"
1010
[dependencies]
1111
tips-datastore.workspace = true
1212
tips-audit.workspace=true
13-
tips-tracing.workspace = true
13+
tips-common.workspace = true
1414
alloy-rpc-types-mev.workspace = true
1515
tokio.workspace = true
1616
tracing.workspace = true

crates/ingress-writer/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ use rdkafka::{
99
producer::FutureProducer,
1010
};
1111
use tips_audit::{KafkaMempoolEventPublisher, MempoolEvent, MempoolEventPublisher};
12+
use tips_common::init_tracing;
1213
use tips_datastore::{BundleDatastore, postgres::PostgresDatastore};
13-
use tips_tracing::init_tracing;
1414
use tokio::time::Duration;
1515
use tracing::{debug, error, info, warn};
1616
use uuid::Uuid;

0 commit comments

Comments
 (0)