Skip to content

Commit

Permalink
fix: use correct feature flags for vortex-ipc -> vortex-fbs dep (#1328)
Browse files Browse the repository at this point in the history
  • Loading branch information
a10y authored Nov 15, 2024
1 parent 8b907c6 commit 99ce19f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion vortex-flatbuffers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ readme = "README.md"
dtype = []
scalar = ["dtype"]
array = ["dtype", "scalar"]
file = ["dtype", "scalar", "array"]
ipc = ["array"]
file = ["ipc"]

[dependencies]
flatbuffers = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion vortex-flatbuffers/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ pub mod scalar;
/// ```
pub mod footer;

#[cfg(feature = "file")]
#[cfg(feature = "ipc")]
#[allow(clippy::all)]
#[allow(clippy::derive_partial_eq_without_eq)]
#[allow(clippy::many_single_char_names)]
Expand Down
2 changes: 1 addition & 1 deletion vortex-ipc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ vortex-array = { workspace = true }
vortex-buffer = { workspace = true }
vortex-dtype = { workspace = true }
vortex-error = { workspace = true }
vortex-flatbuffers = { workspace = true, features = ["array"] }
vortex-flatbuffers = { workspace = true, features = ["ipc"] }
vortex-io = { workspace = true }

[dev-dependencies]
Expand Down

0 comments on commit 99ce19f

Please sign in to comment.