From 2502adcbf3eca1dc42936b38ecc981b4a48eae64 Mon Sep 17 00:00:00 2001 From: Liam Monninger Date: Sat, 11 May 2024 13:48:52 -0700 Subject: [PATCH] fix: sequencer should not be default. --- Cargo.lock | 1 - protocol-units/da/m1/light-node/Cargo.toml | 2 +- util/movement-types/Cargo.toml | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d8ebc70d4..02d2eee01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7203,7 +7203,6 @@ name = "movement-types" version = "0.3.0" dependencies = [ "anyhow", - "derivative", "serde", "serde_with", "sha2 0.10.8", diff --git a/protocol-units/da/m1/light-node/Cargo.toml b/protocol-units/da/m1/light-node/Cargo.toml index ae5ff50d5..8c567950e 100644 --- a/protocol-units/da/m1/light-node/Cargo.toml +++ b/protocol-units/da/m1/light-node/Cargo.toml @@ -40,7 +40,7 @@ tracing-subscriber = { workspace = true, optional = true } [features] default = [ - "sequencer", + # "sequencer", "logging" ] logging = [ diff --git a/util/movement-types/Cargo.toml b/util/movement-types/Cargo.toml index a1b02251b..69ddb6ddf 100644 --- a/util/movement-types/Cargo.toml +++ b/util/movement-types/Cargo.toml @@ -12,9 +12,9 @@ rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde = { workspace = true } +serde = { workspace = true, features = ["derive"] } serde_with = { workspace = true } -derivative = { workspace = true } +# derivative = { workspace = true } anyhow = { workspace = true } sha2 = { workspace = true }