From f2ec19972e24c2c7183bd8c17bd7569d0251133f Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Fri, 4 Aug 2023 12:07:39 +0200 Subject: [PATCH] dict syntax --- crates/polars-io/Cargo.toml | 4 ++-- crates/polars-json/Cargo.toml | 2 +- crates/polars-lazy/Cargo.toml | 2 +- crates/polars-pipe/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/polars-io/Cargo.toml b/crates/polars-io/Cargo.toml index af8b704c399f5..785b4ff0a21c4 100644 --- a/crates/polars-io/Cargo.toml +++ b/crates/polars-io/Cargo.toml @@ -19,13 +19,13 @@ polars-utils = { version = "0.31.1", path = "../polars-utils" } ahash = { workspace = true } arrow = { workspace = true } async-trait = { version = "0.1.59", optional = true } -bytes = "1.3.0" +bytes = { version = "1.3.0" } chrono = { workspace = true, optional = true } chrono-tz = { version = "0.8.1", optional = true } fast-float = { version = "0.2.0", optional = true } flate2 = { version = "1", optional = true, default-features = false } futures = { workspace = true, optional = true } -home = "0.5.4" +home = { version = "0.5.4" } lexical = { version = "6", optional = true, default-features = false, features = ["std", "parse-integers"] } lexical-core = { version = "0.8", optional = true } memchr = { workspace = true } diff --git a/crates/polars-json/Cargo.toml b/crates/polars-json/Cargo.toml index afeb1d49ff402..89f895259cda4 100644 --- a/crates/polars-json/Cargo.toml +++ b/crates/polars-json/Cargo.toml @@ -15,7 +15,7 @@ polars-utils = { version = "0.31.1", path = "../polars-utils" } ahash = { workspace = true } arrow = { workspace = true } -fallible-streaming-iterator = "0.1" +fallible-streaming-iterator = { version = "0.1" } hashbrown = { workspace = true } indexmap = { workspace = true } num-traits = { workspace = true } diff --git a/crates/polars-lazy/Cargo.toml b/crates/polars-lazy/Cargo.toml index b952d3483cd6e..6473425785367 100644 --- a/crates/polars-lazy/Cargo.toml +++ b/crates/polars-lazy/Cargo.toml @@ -21,7 +21,7 @@ polars-utils = { version = "0.31.1", path = "../polars-utils" } ahash = { workspace = true } bitflags = { workspace = true } -glob = "0.3" +glob = { version = "0.3" } once_cell = { workspace = true } pyo3 = { workspace = true, optional = true } rayon = { workspace = true } diff --git a/crates/polars-pipe/Cargo.toml b/crates/polars-pipe/Cargo.toml index b7f10ccfe2d31..52aa14546d1f7 100644 --- a/crates/polars-pipe/Cargo.toml +++ b/crates/polars-pipe/Cargo.toml @@ -19,7 +19,7 @@ polars-utils = { version = "0.31.1", path = "../polars-utils", features = ["sysi crossbeam-channel = { version = "0.5", optional = true } crossbeam-queue = { version = "0.3", optional = true } -enum_dispatch = "0.3" +enum_dispatch = { version = "0.3" } hashbrown = { workspace = true } num-traits = { workspace = true } rayon = { workspace = true }