Skip to content

Commit

Permalink
chore: Fix vortex-array dependency's features on vortex-scalar (#…
Browse files Browse the repository at this point in the history
…2153)

the `arbitrary` feature should (almost) always be feature-flagged
  • Loading branch information
AdamGS authored Jan 30, 2025
1 parent c79f14f commit ae9a96b
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions vortex-array/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,21 @@ static_assertions = { workspace = true }
vortex-buffer = { workspace = true, features = ["arrow", "rkyv"] }
vortex-datetime-dtype = { workspace = true }
vortex-dtype = { workspace = true, features = ["rkyv", "serde"] }
vortex-error = { workspace = true, features = ["flatbuffers", "flexbuffers", "rancor"] }
vortex-flatbuffers = { workspace = true, features = ["array"] }
vortex-mask = { workspace = true }
vortex-scalar = { workspace = true, features = [
vortex-error = { workspace = true, features = [
"flatbuffers",
"serde",
"arbitrary",
"flexbuffers",
"rancor",
] }
vortex-flatbuffers = { workspace = true, features = ["array"] }
vortex-mask = { workspace = true }
vortex-scalar = { workspace = true, features = ["flatbuffers", "serde"] }

[features]
arbitrary = ["dep:arbitrary", "vortex-dtype/arbitrary"]
arbitrary = [
"dep:arbitrary",
"vortex-dtype/arbitrary",
"vortex-scalar/arbitrary",
]
test-harness = ["dep:goldenfile"]
canonical_counter = []

Expand Down

0 comments on commit ae9a96b

Please sign in to comment.