delta-io / delta-rs

A native Rust library for Delta Lake, with bindings into Python
https://delta-io.github.io/delta-rs/
Apache License 2.0
2.2k stars 395 forks source link

fix: msrv in workspace #2524

Closed roeap closed 4 months ago

roeap commented 4 months ago

Description

Our min required rust version does not match the features we are using. Specifically, we are using impl Trait as a return type in a trait, which is only available since 1.75.

https://github.com/delta-io/delta-rs/blob/8eb2b8b611ce4f8cdfd24d3ae5ff52332628188f/crates/core/src/delta_datafusion/mod.rs#L238-L241

Related Issue(s)

This was raised in a discussion #2514.

Documentation