Skip to content

Commit

Permalink
dict syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Aug 9, 2023
1 parent 4d9392c commit d7f70f4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/polars-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ url = { workspace = true, optional = true }
xxhash-rust = { workspace = true }

[dev-dependencies]
bincode = "1"
bincode = { version = "1" }
serde_json = { workspace = true }

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/polars-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-lazy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-pipe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit d7f70f4

Please sign in to comment.