Skip to content

Commit 99ce19f

Browse files
authored
fix: use correct feature flags for vortex-ipc -> vortex-fbs dep (#1328)
1 parent 8b907c6 commit 99ce19f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

vortex-flatbuffers/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ readme = "README.md"
1717
dtype = []
1818
scalar = ["dtype"]
1919
array = ["dtype", "scalar"]
20-
file = ["dtype", "scalar", "array"]
20+
ipc = ["array"]
21+
file = ["ipc"]
2122

2223
[dependencies]
2324
flatbuffers = { workspace = true }

vortex-flatbuffers/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ pub mod scalar;
9292
/// ```
9393
pub mod footer;
9494

95-
#[cfg(feature = "file")]
95+
#[cfg(feature = "ipc")]
9696
#[allow(clippy::all)]
9797
#[allow(clippy::derive_partial_eq_without_eq)]
9898
#[allow(clippy::many_single_char_names)]

vortex-ipc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ vortex-array = { workspace = true }
2222
vortex-buffer = { workspace = true }
2323
vortex-dtype = { workspace = true }
2424
vortex-error = { workspace = true }
25-
vortex-flatbuffers = { workspace = true, features = ["array"] }
25+
vortex-flatbuffers = { workspace = true, features = ["ipc"] }
2626
vortex-io = { workspace = true }
2727

2828
[dev-dependencies]

0 commit comments

Comments
 (0)