Skip to content

Commit

Permalink
chore: bump datafusion to v40
Browse files Browse the repository at this point in the history
  • Loading branch information
vigimite committed Aug 13, 2024
1 parent 0dc1798 commit 47f5537
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [
resolver = "2"

[workspace.package]
authors = ["<michelevig@protonmail.com>"]
authors = ["<vigimite@protonmail.com>"]
edition = "2021"
description = "Framework to build ETL data pipelines declaratively"
homepage = "https://github.com/vigimite/aqueducts"
Expand All @@ -25,9 +25,9 @@ aqueducts = { path = "aqueducts/core", version = "0.4.0" }
aqueducts-odbc = { path = "aqueducts/odbc", version = "0.4.0" }
aqueducts-utils = { path = "aqueducts/utils", version = "0.4.0" }

datafusion = "39"
datafusion = "40"
object_store = "0.10"
deltalake = { version = "0.18.1", features = ["datafusion"] }
deltalake = { version = "0.18.2", features = ["datafusion"] }

serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
6 changes: 3 additions & 3 deletions aqueducts-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aqueducts-cli"
authors = ["<michelevig@protonmail.com>"]
authors = ["<vigimite@protonmail.com>"]
edition = "2021"
description = "CLI application to run pipelines defined for the aqueducts framework"
homepage = "https://github.com/vigimite/aqueducts"
Expand All @@ -22,11 +22,11 @@ odbc = ["aqueducts/odbc"]
datafusion.workspace = true

aqueducts = { path = "../aqueducts/core", version = "0.4.0" }
datafusion-functions-json = "0.2"
datafusion-functions-json = "0.40"
clap = { version = "4.5.4", features = ["derive"] }
env_logger = "0.11.3"
log = "0.4.21"
tokio = { version = "1.37.0", features = ["full"] }
tokio = { workspace = true, features = ["full"] }

[[bin]]
name = "aqueducts"
Expand Down
2 changes: 1 addition & 1 deletion aqueducts/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ aqueducts-odbc = { workspace = true, optional = true }
aqueducts-utils.workspace = true

[dev-dependencies]
tokio = { version = "1", features = ["full"] }
tokio = { workspace = true, features = ["full"] }
rand = "0.8"
tracing-test = "0.2"
4 changes: 2 additions & 2 deletions aqueducts/odbc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ serde.workspace = true
thiserror.workspace = true
tracing.workspace = true

arrow-odbc = { version = "11.2.0" }
arrow-odbc = { version = "12.0.0" }

[dev-dependencies]
tokio = { version = "1", features = ["full"] }
tokio = { workspace = true, features = ["full"] }
tracing-test = "0.2"
2 changes: 1 addition & 1 deletion aqueducts/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ thiserror.workspace = true
tracing.workspace = true

[dev-dependencies]
tokio = { version = "1", features = ["full"] }
tokio = { workspace = true, features = ["full"] }
tracing-test = "0.2"
3 changes: 0 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
version: '3.9'

services:

db:
image: postgres:15
restart: "no"
Expand Down

0 comments on commit 47f5537

Please sign in to comment.