Polars version bump. Compile time erro fix
This commit is contained in:
parent
7ecee28ddf
commit
ada122e5c3
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "dr"
|
name = "dr"
|
||||||
description = "Command-line data file processing in Rust"
|
description = "Command-line data file processing in Rust"
|
||||||
version = "0.4.2"
|
version = "0.5.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
include = [
|
include = [
|
||||||
"**/*.rs",
|
"**/*.rs",
|
||||||
|
@ -14,4 +14,5 @@ repository = "https://git.guillemborrell.es/guillem/dr"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = {version = "4.0", features = ["cargo"]}
|
clap = {version = "4.0", features = ["cargo"]}
|
||||||
polars = {"version" = "0.25", features = ["sql", "lazy", "parquet", "decompress", "ipc", "ipc_streaming", "docs-selection"]}
|
polars-lazy = {"version" = "0.26"}
|
||||||
|
polars = {"version" = "0.26", features = ["sql", "lazy", "parquet", "decompress", "ipc", "ipc_streaming", "docs-selection"]}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use polars::prelude::LazyFrame;
|
use polars_lazy::lazy::LazyFrame;
|
||||||
use polars::sql::SQLContext;
|
use polars::sql::SQLContext;
|
||||||
|
|
||||||
pub fn execute(ldf: LazyFrame, statement: &String) -> LazyFrame {
|
pub fn execute(ldf: LazyFrame, statement: &String) -> LazyFrame {
|
||||||
|
|
Loading…
Reference in a new issue