Skip to content

Commit 4b20ac1

Browse files
committed
refactor: remove sync_engine crate and related dependencies
- Removed the sync_engine crate from the workspace and its dependencies from Cargo.lock. - Updated metric labels to reflect the removal of sync_engine. - Cleaned up Cargo.toml files across the project to eliminate references to sync_engine. This change streamlines the project structure and eliminates unused components, enhancing maintainability.
1 parent 810b110 commit 4b20ac1

File tree

4 files changed

+2
-59
lines changed

4 files changed

+2
-59
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ members = [
88
"crates/lighthouse_compat",
99
"crates/miner",
1010
"crates/actor_system",
11-
"crates/sync_engine",
1211
"tests"
1312
]
1413

app/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ lighthouse_wrapper = { package = "lighthouse_wrapper", path = "../crates/lightho
2424
# workspace
2525
bridge = { package = "federation", path = "../crates/federation" }
2626
actor_system = { path = "../crates/actor_system" }
27-
sync_engine = { path = "../crates/sync_engine" }
2827
federation_v2 = { path = "../crates/federation_v2" }
2928
lighthouse_wrapper_v2 = { path = "../crates/lighthouse_wrapper_v2" }
3029

app/src/metrics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2231,7 +2231,7 @@ impl MetricLabels {
22312231

22322232
/// Standard migration phase labels
22332233
pub const MIGRATION_PHASES: &'static [&'static str] = &[
2234-
"foundation", "actor_system", "sync_engine", "federation_v2",
2234+
"foundation", "actor_system", "federation_v2",
22352235
"lighthouse_v2", "migration", "validation", "rollback_safety",
22362236
"performance_verification", "final_validation"
22372237
];

0 commit comments

Comments
 (0)