diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14bf19f..43ec6b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -132,7 +132,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: EmbarkStudios/cargo-deny-action@v1 + - uses: EmbarkStudios/cargo-deny-action@v2 with: command: check license diff --git a/Cargo.toml b/Cargo.toml index 30a06ee..e84a189 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,22 +25,22 @@ authors = ["Matthew Cramerus "] license = "Apache-2.0" description = "Materialized Views & Query Rewriting in DataFusion" keywords = ["arrow", "arrow-rs", "datafusion"] -rust-version = "1.80" +rust-version = "1.85.1" [dependencies] arrow = "55.2.0" arrow-schema = "55.2.0" async-trait = "0.1" dashmap = "6" -datafusion = "49" -datafusion-common = "49" -datafusion-expr = "49" -datafusion-functions = "49" -datafusion-functions-aggregate = "49" -datafusion-optimizer = "49" -datafusion-physical-expr = "49" -datafusion-physical-plan = "49" -datafusion-sql = "49" +datafusion = "49.0.2" +datafusion-common = "49.0.2" +datafusion-expr = "49.0.2" +datafusion-functions = "49.0.2" +datafusion-functions-aggregate = "49.0.2" +datafusion-optimizer = "49.0.2" +datafusion-physical-expr = "49.0.2" +datafusion-physical-plan = "49.0.2" +datafusion-sql = "49.0.2" futures = "0.3" itertools = "0.14" log = "0.4" diff --git a/tests/materialized_listing_table.rs b/tests/materialized_listing_table.rs index 7798f9a..5d91a67 100644 --- a/tests/materialized_listing_table.rs +++ b/tests/materialized_listing_table.rs @@ -504,7 +504,7 @@ impl TableProvider for MaterializedListingTable { self.inner.get_table_definition() } - fn get_logical_plan(&self) -> Option> { + fn get_logical_plan(&self) -> Option> { // We _could_ return the LogicalPlan here, // but it will cause this table to be treated like a regular view // and the materialized results will not be used.