Skip to content

Commit cdab392

Browse files
committed
Update parquet-testing pin
1 parent 0e48877 commit cdab392

File tree

5 files changed

+113
-2
lines changed

5 files changed

+113
-2
lines changed

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ members = [
3838
"arrow-select",
3939
"arrow-string",
4040
"parquet",
41+
"parquet-variant",
4142
"parquet_derive",
4243
"parquet_derive_test",
4344
]
@@ -100,4 +101,4 @@ chrono = { version = "0.4.40", default-features = false, features = ["clock"] }
100101
[profile.profiling]
101102
inherits = "release"
102103
debug = true
103-
strip = false
104+
strip = false

parquet-testing

Submodule parquet-testing updated 65 files

parquet-variant/Cargo.toml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
[package]
19+
name = "parquet-variant"
20+
# This package is still in development and thus the version does
21+
# not follow the versions of the rest of the crates in this repo.
22+
version = "0.1.0"
23+
license = { workspace = true }
24+
description = "Apache Parquet Variant implementation in Rust"
25+
homepage = { workspace = true }
26+
repository = { workspace = true }
27+
authors = { workspace = true }
28+
keywords = ["arrow", "parquet", "variant"]
29+
readme = "README.md"
30+
edition = { workspace = true }
31+
rust-version = { workspace = true }
32+
33+
[dependencies]
34+
35+
[lib]
36+
37+

parquet-variant/README.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!---
2+
Licensed to the Apache Software Foundation (ASF) under one
3+
or more contributor license agreements. See the NOTICE file
4+
distributed with this work for additional information
5+
regarding copyright ownership. The ASF licenses this file
6+
to you under the Apache License, Version 2.0 (the
7+
"License"); you may not use this file except in compliance
8+
with the License. You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing,
13+
software distributed under the License is distributed on an
14+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
KIND, either express or implied. See the License for the
16+
specific language governing permissions and limitations
17+
under the License.
18+
-->
19+
20+
# Apache Parquet Variant Rust Implementation
21+
22+
[![crates.io](https://img.shields.io/crates/v/parquet-variant.svg)](https://crates.io/crates/parquet-variant)
23+
[![docs.rs](https://img.shields.io/docsrs/parquet-variant.svg)](https://docs.rs/parquet/latest/parquet-variant/)
24+
25+
This crate contains an implementation of [Variant Binary Encoding], part of
26+
[Apache Parquet], which is part of the [Apache Arrow] project.
27+
28+
[Variant Binary Encoding]: https://github.com/apache/parquet-format/blob/master/VariantEncoding.md
29+
[Apache Parquet]: https://parquet.apache.org/
30+
[Apache Arrow]: https://arrow.apache.org/
31+
32+
Please see the [API documentation](https://docs.rs/parquet-variant/latest) for more details.
33+
34+
## 🚧 Work In Progress
35+
36+
NOTE: This crate is under active development and is not yet ready for production use.
37+
If you are interested in helping, you can find more information on the GitHub [Variant issue]
38+
39+
[Variant issue]: https://github.com/apache/arrow-rs/issues/6736
40+
41+
42+
## License
43+
44+
Licensed under the Apache License, Version 2.0: <http://www.apache.org/licenses/LICENSE-2.0>.

parquet-variant/src/lib.rs

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Licensed to the Apache Software Foundation (ASF) under one
2+
// or more contributor license agreements. See the NOTICE file
3+
// distributed with this work for additional information
4+
// regarding copyright ownership. The ASF licenses this file
5+
// to you under the Apache License, Version 2.0 (the
6+
// "License"); you may not use this file except in compliance
7+
// with the License. You may obtain a copy of the License at
8+
//
9+
// http://www.apache.org/licenses/LICENSE-2.0
10+
//
11+
// Unless required by applicable law or agreed to in writing,
12+
// software distributed under the License is distributed on an
13+
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
// KIND, either express or implied. See the License for the
15+
// specific language governing permissions and limitations
16+
// under the License.
17+
18+
//! Implementation of [Variant Binary Encoding] from [Apache Parquet].
19+
//!
20+
//! [Variant Binary Encoding]: https://github.com/apache/parquet-format/blob/master/VariantEncoding.md
21+
//! [Apache Parquet]: https://parquet.apache.org/
22+
//! [Apache Arrow]: https://arrow.apache.org/
23+
//!
24+
//! ## 🚧 Work In Progress
25+
//!
26+
//! This crate is under active development and is not yet ready for production use.
27+
//! If you are interested in helping, you can find more information on the GitHub [Variant issue]
28+
//!
29+
//! [Variant issue]: https://github.com/apache/arrow-rs/issues/6736

0 commit comments

Comments
 (0)