Skip to content

Commit

Permalink
Merge pull request #325 from zachschuermann/update-deps
Browse files Browse the repository at this point in the history
[chore] update deps, stop using caret
  • Loading branch information
zachschuermann authored Sep 9, 2024
2 parents c3346d6 + 9a9d05f commit 2291a87
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 35 deletions.
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ readme = "README.md"
version = "0.3.0"

[workspace.dependencies]
arrow = { version = "^52.0" }
arrow-arith = { version = "^52.0" }
arrow-array = { version = "^52.0" }
arrow-buffer = { version = "^52.0" }
arrow-cast = { version = "^52.0" }
arrow-data = { version = "^52.0" }
arrow-ord = { version = "^52.0" }
arrow-json = { version = "^52.0" }
arrow-select = { version = "^52.0" }
arrow-schema = { version = "^52.0" }
parquet = { version = "^52.0", features = ["object_store"] }
object_store = "^0.10.2"
hdfs-native-object-store = "0.11.0"
arrow = { version = "53.0" }
arrow-arith = { version = "53.0" }
arrow-array = { version = "53.0" }
arrow-buffer = { version = "53.0" }
arrow-cast = { version = "53.0" }
arrow-data = { version = "53.0" }
arrow-ord = { version = "53.0" }
arrow-json = { version = "53.0" }
arrow-select = { version = "53.0" }
arrow-schema = { version = "53.0" }
parquet = { version = "53.0", features = ["object_store"] }
object_store = "0.11.0"
hdfs-native-object-store = "0.12.0"
hdfs-native = "0.10.0"
walkdir = "2.5.0"
6 changes: 3 additions & 3 deletions acceptance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ thiserror = "1"
url = "2"

[build-dependencies]
ureq = "2.2"
ureq = "2.10"
flate2 = "1.0"
tar = "0.4"

[dev-dependencies]
datatest-stable = "0.2"
test-log = { version = "0.2", default-features = false, features = ["trace"] }
tempfile = "3"
test-case = { version = "3.1.0" }
tokio = { version = "1.39" }
test-case = { version = "3.3.1" }
tokio = { version = "1.40" }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"env-filter",
"fmt",
Expand Down
10 changes: 5 additions & 5 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ delta_kernel = { path = "../kernel", default-features = false, features = [
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.3.0" }

# used if we use the default engine to be able to move arrow data into the c-ffi format
arrow-schema = { version = "^52.0", default-features = false, features = [
arrow-schema = { version = "53.0", default-features = false, features = [
"ffi",
], optional = true }
arrow-data = { version = "^52.0", default-features = false, features = [
arrow-data = { version = "53.0", default-features = false, features = [
"ffi",
], optional = true }
arrow-array = { version = "^52.0", default-features = false, optional = true }
arrow-array = { version = "53.0", default-features = false, optional = true }

[build-dependencies]
cbindgen = "0.26.0"
libc = "0.2.147"
cbindgen = "0.27.0"
libc = "0.2.158"

[dev-dependencies]
rand = "0.8.5"
Expand Down
20 changes: 10 additions & 10 deletions kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,28 @@ exclude = ["tests/golden_tables.rs", "tests/golden_data/" ]
all-features = true

[dependencies]
bytes = "1.4"
bytes = "1.7"
chrono = { version = "0.4" }
either = "1.8"
either = "1.13"
fix-hidden-lifetime-bug = "0.2"
indexmap = "2.2.1"
indexmap = "2.5.0"
itertools = "0.13"
lazy_static = "1.4"
roaring = "0.10.1"
lazy_static = "1.5"
roaring = "0.10.6"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
thiserror = "1"
# only for structured logging
tracing = { version = "0.1", features = ["log"] }
url = "2"
uuid = "1.3.0"
uuid = "1.10.0"
z85 = "3.0.5"

# bring in our derive macros
delta_kernel_derive = { path = "../derive-macros", version = "0.3.0" }

# used for developer-visibility
visibility = "0.1.0"
visibility = "0.1.1"

# Used in default engine
arrow-buffer = { workspace = true, optional = true }
Expand All @@ -53,12 +53,12 @@ hdfs-native-object-store = { workspace = true, optional = true }
# Used in default and sync engine
parquet = { workspace = true, optional = true }
# Used for fetching direct urls (like pre-signed urls)
reqwest = { version = "^0.12.0", optional = true }
reqwest = { version = "0.12.7", optional = true }
strum = { version = "0.26", features = ["derive"] }


# optionally used with default engine (though not required)
tokio = { version = "1.39", optional = true, features = ["rt-multi-thread"] }
tokio = { version = "1.40", optional = true, features = ["rt-multi-thread"] }

# Used in integration tests
hdfs-native = { workspace = true, optional = true }
Expand Down Expand Up @@ -109,7 +109,7 @@ integration-test = [
]

[build-dependencies]
rustc_version = "0.4.0"
rustc_version = "0.4.1"

[dev-dependencies]
arrow = { workspace = true, features = ["json", "prettyprint"] }
Expand Down
4 changes: 2 additions & 2 deletions kernel/examples/read-table-multi-threaded/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ publish = false

[dependencies]
arrow = { workspace = true, features = ["prettyprint", "chrono-tz"] }
clap = { version = "^4.4", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
delta_kernel = { path = "../../../kernel", features = [
"cloud",
"default-engine",
"developer-visibility",
"tokio",
] }
env_logger = "0.11.3"
env_logger = "0.11.5"
itertools = "0.13"
spmc = "0.3.0"
url = "2"
4 changes: 2 additions & 2 deletions kernel/examples/read-table-single-threaded/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ publish = false

[dependencies]
arrow = { workspace = true, features = ["prettyprint", "chrono-tz"] }
clap = { version = "^4.4", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
delta_kernel = { path = "../../../kernel", features = [
"cloud",
"default-engine",
"developer-visibility",
"tokio",
] }
env_logger = "0.11.3"
env_logger = "0.11.5"
itertools = "0.13"
url = "2"

0 comments on commit 2291a87

Please sign in to comment.