From 31b8d403c157d24dcecc0cf8fbbd542d26c85603 Mon Sep 17 00:00:00 2001 From: Nicholas Gates Date: Fri, 12 Apr 2024 17:21:27 -0400 Subject: [PATCH] Array2: Constnat --- vortex-array/Cargo.toml | 2 +- vortex-array2/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vortex-array/Cargo.toml b/vortex-array/Cargo.toml index b0c9d90699..fe5c0bf12a 100644 --- a/vortex-array/Cargo.toml +++ b/vortex-array/Cargo.toml @@ -40,7 +40,7 @@ vortex-alloc = { path = "../vortex-alloc" } vortex-error = { path = "../vortex-error" } vortex-flatbuffers = { path = "../vortex-flatbuffers" } vortex-schema = { path = "../vortex-schema" } -serde = { workspace = true, features = ["derive"], optional = true } +serde = { workspace = true, features = ["derive"] } [build-dependencies] flatc = { workspace = true } diff --git a/vortex-array2/Cargo.toml b/vortex-array2/Cargo.toml index 7cd7911db0..891caeafcf 100644 --- a/vortex-array2/Cargo.toml +++ b/vortex-array2/Cargo.toml @@ -25,7 +25,7 @@ log = { workspace = true } num-traits = { workspace = true } paste = { workspace = true } serde = { workspace = true, features = ["derive"] } -vortex-array = { path = "../vortex-array", features = ["serde"] } +vortex-array = { path = "../vortex-array" } vortex-error = { path = "../vortex-error", features = ["flexbuffers"] } vortex-flatbuffers = { path = "../vortex-flatbuffers" } vortex-schema = { path = "../vortex-schema", features = ["serde"] }