influxdb/parquet_file/Cargo.toml

35 lines
1.0 KiB
TOML
Raw Normal View History

2021-03-31 01:31:51 +00:00
[package]
name = "parquet_file"
version = "0.1.0"
authors = ["Nga Tran <nga-tran@live.com>"]
2021-10-25 08:45:44 +00:00
edition = "2021"
2021-03-31 01:31:51 +00:00
[dependencies] # In alphabetical order
arrow = { version = "14.0.0", features = ["prettyprint"] }
base64 = "0.13"
bytes = "1.0"
2022-05-05 19:29:24 +00:00
data_types = { path = "../data_types" }
datafusion = { path = "../datafusion" }
datafusion_util = { path = "../datafusion_util" }
futures = "0.3"
generated_types = { path = "../generated_types" }
2022-05-05 19:29:24 +00:00
iox_time = { path = "../iox_time" }
metric = { path = "../metric" }
object_store = "0.0.1"
observability_deps = { path = "../observability_deps" }
2022-05-05 19:29:24 +00:00
parking_lot = "0.12"
parquet = {version = "14.0.0", features = ["experimental"]}
parquet-format = "4.0"
pbjson-types = "0.3"
predicate = { path = "../predicate" }
prost = "0.10"
schema = { path = "../schema" }
2022-05-05 19:29:24 +00:00
snafu = "0.7"
tempfile = "3.1.0"
thrift = "0.13"
tokio = { version = "1.18", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] }
uuid = { version = "0.8", features = ["v4"] }
chore: Update deps: datafusion, arrow/arrow-flight/parquet to 11, zstd to 0.11 (#4119) * chore: update datafusion * chore(deps): Bump arrow from 10.0.0 to 11.0.0 Bumps [arrow](https://github.com/apache/arrow-rs) from 10.0.0 to 11.0.0. - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/10.0.0...11.0.0) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deps): Bump arrow-flight from 10.0.0 to 11.0.0 Bumps [arrow-flight](https://github.com/apache/arrow-rs) from 10.0.0 to 11.0.0. - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/10.0.0...11.0.0) --- updated-dependencies: - dependency-name: arrow-flight dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update parquet to 11.0.0 * fix: error on create schema, test for same * fix: upgrade zstd * chore: Run cargo hakari tasks * fix: fix logical merge conflict * fix: hakari * fix: hakari * fix: update newly introduced dep Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: CircleCI[bot] <circleci@influxdata.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2022-03-24 15:27:36 +00:00
zstd = "0.11"
workspace-hack = { path = "../workspace-hack"}
thiserror = "1.0.31"