Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,14 @@ parquet-variant-compute = { version = "58.1.0", path = "./parquet-variant-comput

chrono = { version = "0.4.40", default-features = false, features = ["clock"] }

simdutf8 = { version = "0.1.5", default-features = false }

criterion = { version = "0.8.0", default-features = false }

insta = { version = "1.46.3", default-features = false }

object_store = { version = "0.13.2", default-features = false }

simdutf8 = { version = "0.1.5", default-features = false }

# release inherited profile keeping debug information and symbols
# for mem/cpu profiling
[profile.profiling]
Expand Down
4 changes: 2 additions & 2 deletions arrow-avro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ arrow-buffer = { workspace = true }
arrow-array = { workspace = true }
arrow-select = { workspace = true, optional = true }

object_store = { version = "0.13", default-features = false, optional = true }
object_store = { workspace = true, optional = true }

bytes = { version = "1.11.0", default-features = false, features = ["std"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
Expand Down Expand Up @@ -93,7 +93,7 @@ futures = "0.3.31"
async-stream = "0.3.6"
apache-avro = "0.21.0"
num-bigint = "0.4"
object_store = { version = "0.13", default-features = false, features = ["fs"] }
object_store = { workspace = true, features = ["fs"] }
once_cell = "1.21.3"
half = { version = "2.1", default-features = false }
tokio = { version = "1.0", default-features = false, features = ["macros", "rt-multi-thread", "io-util", "fs"] }
Expand Down
4 changes: 2 additions & 2 deletions parquet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ parquet-variant = { workspace = true, optional = true }
parquet-variant-json = { workspace = true, optional = true }
parquet-variant-compute = { workspace = true, optional = true }

object_store = { version = "0.13.1", default-features = false, optional = true }
object_store = { workspace = true, optional = true, features = ["tokio"] }

bytes = { version = "1.1", default-features = false, features = ["std"] }
thrift = { version = "0.17", default-features = false }
Expand Down Expand Up @@ -93,7 +93,7 @@ arrow = { workspace = true, features = ["ipc", "test_utils", "prettyprint", "jso
arrow-cast = { workspace = true }
tokio = { version = "1.0", default-features = false, features = ["macros", "rt-multi-thread", "io-util", "fs"] }
rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"] }
object_store = { version = "0.13.1", default-features = false, features = ["azure", "fs"] }
object_store = { workspace = true, features = ["azure", "fs"] }
sysinfo = { version = "0.38.1", default-features = false, features = ["system"] }

[package.metadata.docs.rs]
Expand Down
Loading