Skip to content

Commit 6ff33f4

Browse files
committed
rename to tips-common
1 parent c80d9d1 commit 6ff33f4

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

Cargo.lock

Lines changed: 16 additions & 16 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
@@ -7,15 +7,15 @@ homepage = "https://github.com/base/tips"
77
repository = "https://github.com/base/tips"
88

99
[workspace]
10-
members = ["crates/datastore", "crates/audit", "crates/ingress-rpc", "crates/maintenance", "crates/ingress-writer", "crates/tracing"]
10+
members = ["crates/datastore", "crates/audit", "crates/ingress-rpc", "crates/maintenance", "crates/ingress-writer", "crates/common"]
1111
resolver = "2"
1212

1313
[workspace.dependencies]
1414
tips-datastore = { path = "crates/datastore" }
1515
tips-audit = { path = "crates/audit" }
1616
tips-maintenance = { path = "crates/maintenance" }
1717
tips-ingress-writer = { path = "crates/ingress-writer" }
18-
tips-tracing = { path = "crates/tracing" }
18+
tips-common = { path = "crates/common" }
1919

2020
# Reth
2121
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.1" }

crates/audit/Cargo.toml

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

1414
[dependencies]
15-
tips-tracing = { workspace = true }
15+
tips-common = { workspace = true }
1616
tokio = { workspace = true }
1717
tracing = { workspace = true }
1818
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
KafkaMempoolArchiver, KafkaMempoolReader, S3EventReaderWriter, create_kafka_consumer,
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/src/main.rs

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

crates/ingress-writer/Cargo.toml

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

crates/ingress-writer/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ use rdkafka::{
1010
};
1111
use std::fs;
1212
use tips_audit::{BundleEvent, BundleEventPublisher, KafkaBundleEventPublisher};
13+
use tips_common::init_tracing;
1314
use tips_datastore::{BundleDatastore, postgres::PostgresDatastore};
14-
use tips_tracing::init_tracing;
1515
use tokio::time::Duration;
1616
use tracing::{debug, error, info, warn};
1717
use uuid::Uuid;

crates/maintenance/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ use std::fs;
1313
use std::sync::Arc;
1414
use std::time::Duration;
1515
use tips_audit::{KafkaMempoolEventPublisher, MempoolEvent, MempoolEventPublisher};
16+
use tips_common::init_tracing;
1617
use tips_datastore::{BundleDatastore, PostgresDatastore};
17-
use tips_tracing::init_tracing;
1818
use tokio::time::sleep;
1919
use tracing::{error, info, warn};
2020
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};

0 commit comments

Comments
 (0)