mirror of
https://github.com/nushell/nushell
synced 2025-01-26 03:45:19 +00:00
Bump object_store from 0.10.2 to 0.11.2
Bumps [object_store](https://github.com/apache/arrow-rs) from 0.10.2 to 0.11.2. - [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md) - [Commits](https://github.com/apache/arrow-rs/compare/object_store_0.10.2...object_store_0.11.2) --- updated-dependencies: - dependency-name: object_store dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
a0d4ae18ee
commit
e22cd7eb0e
2 changed files with 48 additions and 6 deletions
52
Cargo.lock
generated
52
Cargo.lock
generated
|
@ -4248,7 +4248,7 @@ dependencies = [
|
|||
"nu-protocol",
|
||||
"nu-utils",
|
||||
"num",
|
||||
"object_store",
|
||||
"object_store 0.11.2",
|
||||
"polars",
|
||||
"polars-arrow",
|
||||
"polars-io",
|
||||
|
@ -4535,7 +4535,28 @@ dependencies = [
|
|||
"ring",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"snafu",
|
||||
"snafu 0.7.5",
|
||||
"tokio",
|
||||
"tracing",
|
||||
"url",
|
||||
"walkdir",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "object_store"
|
||||
version = "0.11.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3cfccb68961a56facde1163f9319e0d15743352344e7808a11795fb99698dcaf"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"bytes",
|
||||
"chrono",
|
||||
"futures",
|
||||
"humantime",
|
||||
"itertools 0.13.0",
|
||||
"parking_lot",
|
||||
"percent-encoding",
|
||||
"snafu 0.8.5",
|
||||
"tokio",
|
||||
"tracing",
|
||||
"url",
|
||||
|
@ -5068,7 +5089,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "4643898a644f30c83737db85f942f8c8956b0c11190b39afec745218eae1746b"
|
||||
dependencies = [
|
||||
"avro-schema",
|
||||
"object_store",
|
||||
"object_store 0.10.2",
|
||||
"polars-arrow-format",
|
||||
"regex",
|
||||
"simdutf8",
|
||||
|
@ -5123,7 +5144,7 @@ dependencies = [
|
|||
"memchr",
|
||||
"memmap2",
|
||||
"num-traits",
|
||||
"object_store",
|
||||
"object_store 0.10.2",
|
||||
"once_cell",
|
||||
"percent-encoding",
|
||||
"polars-arrow",
|
||||
|
@ -6934,7 +6955,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6"
|
||||
dependencies = [
|
||||
"doc-comment",
|
||||
"snafu-derive",
|
||||
"snafu-derive 0.7.5",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "snafu"
|
||||
version = "0.8.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019"
|
||||
dependencies = [
|
||||
"snafu-derive 0.8.5",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -6949,6 +6979,18 @@ dependencies = [
|
|||
"syn 1.0.109",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "snafu-derive"
|
||||
version = "0.8.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917"
|
||||
dependencies = [
|
||||
"heck 0.5.0",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn 2.0.90",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "snap"
|
||||
version = "1.1.1"
|
||||
|
|
|
@ -48,7 +48,7 @@ hashbrown = { version = "0.14", features = ["rayon", "ahash", "serde", "raw"] }
|
|||
aws-config = { version = "1.5", features = ["sso"] }
|
||||
aws-credential-types = "1.2"
|
||||
tokio = { version = "1.41", features = ["full"] }
|
||||
object_store = { version = "0.10", default-features = false }
|
||||
object_store = { version = "0.11", default-features = false }
|
||||
url.workspace = true
|
||||
|
||||
[dependencies.polars]
|
||||
|
|
Loading…
Reference in a new issue