Skip to content

Commit dc8ee53

Browse files
committed
Initial work
Signed-off-by: Adam Gutglick <adam@spiraldb.com>
1 parent 1a8b8aa commit dc8ee53

23 files changed

Lines changed: 981 additions & 11 deletions

File tree

Cargo.lock

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ members = [
5555
"benchmarks/duckdb-bench",
5656
"benchmarks/random-access-bench",
5757
"vortex-sqllogictest",
58+
"encodings/parquet-variant",
5859
]
5960
exclude = ["java/testfiles", "wasm-test"]
6061
resolver = "2"
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[package]
2+
name = "vortex-parquet-variant"
3+
authors = { workspace = true }
4+
categories = { workspace = true }
5+
description = "Vortex Pco array"
6+
edition = { workspace = true }
7+
homepage = { workspace = true }
8+
include = { workspace = true }
9+
keywords = { workspace = true }
10+
license = { workspace = true }
11+
readme = { workspace = true }
12+
repository = { workspace = true }
13+
rust-version = { workspace = true }
14+
version = { workspace = true }
15+
16+
[lints]
17+
workspace = true
18+
19+
[dependencies]
20+
prost = { workspace = true }
21+
vortex-array = { workspace = true }
22+
vortex-buffer = { workspace = true }
23+
vortex-error = { workspace = true }
24+
vortex-mask = { workspace = true }
25+
vortex-session = { workspace = true }
26+
27+
[dev-dependencies]
28+
rstest = { workspace = true }
29+
vortex-array = { workspace = true, features = ["_test-harness"] }
30+
31+
[package.metadata.cargo-machete]
32+
ignored = ["getrandom_v03"]

0 commit comments

Comments
 (0)