Skip to content

Commit

Permalink
chore: vortex-all -> vortex (#1239)
Browse files Browse the repository at this point in the history
Thanks to @pigeonhands for allowing us to use this name! ❤️
  • Loading branch information
a10y authored Nov 7, 2024
1 parent 7307b4a commit 40c55a1
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"encodings/*",
"fuzz",
"pyvortex",
"vortex",
"vortex-array",
"vortex-buffer",
"vortex-datafusion",
Expand All @@ -13,7 +14,6 @@ members = [
"vortex-expr",
"vortex-flatbuffers",
"vortex-proto",
"vortex-all",
"vortex-sampling-compressor",
"vortex-scalar",
"vortex-schema",
Expand Down Expand Up @@ -133,6 +133,7 @@ url = "2"
uuid = "1.8.0"

# BEGIN crates published by this project
vortex = { version = "0.14.0", path = "./vortex" }
vortex-alp = { version = "0.14.0", path = "./encodings/alp" }
vortex-array = { version = "0.14.0", path = "./vortex-array" }
vortex-buffer = { version = "0.14.0", path = "./vortex-buffer" }
Expand All @@ -154,7 +155,6 @@ vortex-runend-bool = { version = "0.14.0", path = "./encodings/runend-bool" }
vortex-scalar = { version = "0.14.0", path = "./vortex-scalar", default-features = false }
vortex-schema = { version = "0.14.0", path = "./vortex-schema" }
vortex-serde = { version = "0.14.0", path = "./vortex-serde", default-features = false }
vortex-all = { version = "0.14.0", path = "./vortex-all" }
vortex-sampling-compressor = { version = "0.14.0", path = "./vortex-sampling-compressor" }
vortex-zigzag = { version = "0.14.0", path = "./encodings/zigzag" }
# END crates published by this project
Expand Down
2 changes: 1 addition & 1 deletion bench-vortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ simplelog = { workspace = true }
tar = { workspace = true }
tokio = { workspace = true, features = ["full"] }
uuid = { workspace = true, features = ["v4"] }
vortex-all = { workspace = true, features = ["object_store", "parquet"] }
vortex = { workspace = true, features = ["object_store", "parquet"] }
vortex-datafusion = { workspace = true }
xshell = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Install

Install vortex and all the first-party array encodings::

cargo add vortex-all
cargo add vortex

Convert
^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion pyvortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ tokio = { workspace = true, features = ["fs"] }
url = { workspace = true }
object_store = { workspace = true, features = ["aws", "gcp", "azure", "http"] }

vortex-all = { workspace = true, features = ["tokio", "object_store", "python"] }
vortex = { workspace = true, features = ["tokio", "object_store", "python"] }
1 change: 1 addition & 0 deletions pyvortex/test/test_array.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import pyarrow as pa

import vortex


Expand Down
1 change: 1 addition & 0 deletions pyvortex/test/test_compress.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import pyarrow as pa
import pyarrow.parquet as pq
import pytest

import vortex


Expand Down
1 change: 1 addition & 0 deletions pyvortex/test/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import pyarrow as pa
import pyarrow.compute as pc
import pytest

import vortex


Expand Down
2 changes: 1 addition & 1 deletion vortex-all/Cargo.toml → vortex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "vortex-all"
name = "vortex"
description = "Vortex file format with all builtin codecs and a sampling compressor."
version = { workspace = true }
homepage = { workspace = true }
Expand Down
File renamed without changes.

0 comments on commit 40c55a1

Please sign in to comment.