Skip to content

Commit

Permalink
rust 2021 edition
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jan 2, 2022
1 parent f64fdc0 commit 29acd19
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion polars/polars-arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "polars-arrow"
version = "0.18.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
edition = "2021"
license = "MIT"
description = "Arrow interfaces for Polars DataFrame library"

Expand Down
2 changes: 1 addition & 1 deletion polars/polars-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "polars-core"
version = "0.18.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
edition = "2021"
license = "MIT"
repository = "https://github.com/pola-rs/polars"
description = "Core of the Polars DataFrame library"
Expand Down
2 changes: 1 addition & 1 deletion polars/polars-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "polars-io"
version = "0.18.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
edition = "2021"
license = "MIT"
repository = "https://github.com/pola-rs/polars"
description = "IO related logic for the Polars DataFrame library"
Expand Down
1 change: 0 additions & 1 deletion polars/polars-io/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ pub(crate) fn finish_reader<R: ArrowReader>(
aggregate: Option<&[ScanAggregation]>,
) -> Result<DataFrame> {
use polars_core::utils::accumulate_dataframes_vertical;
use std::convert::TryFrom;

let mut num_rows = 0;
let mut parsed_dfs = Vec::with_capacity(1024);
Expand Down
2 changes: 1 addition & 1 deletion polars/polars-lazy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "polars-lazy"
version = "0.18.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
edition = "2021"
license = "MIT"
repository = "https://github.com/pola-rs/polars"
description = "Lazy query engine for the Polars DataFrame library"
Expand Down
2 changes: 1 addition & 1 deletion py-polars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "py-polars"
version = "0.12.7"
authors = ["ritchie46 <ritchie46@gmail.com>"]
documentation = "https://pola-rs.github.io/polars/py-polars/html/reference/index.html"
edition = "2018"
edition = "2021"
homepage = "https://github.com/pola-rs/polars"
license = "MIT"
readme = "README.md"
Expand Down

0 comments on commit 29acd19

Please sign in to comment.