Skip to content

Commit

Permalink
chore(rust): remove time 0.1 dep (#6979)
Browse files Browse the repository at this point in the history
  • Loading branch information
ozgrakkurt authored Feb 18, 2023
1 parent b4b1893 commit b7178f1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion polars/polars-arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "Arrow interfaces for Polars DataFrame library"

[dependencies]
arrow.workspace = true
chrono = { version = "0.4", optional = true }
chrono = { version = "0.4", default-features = false, features = ["std"], optional = true }
chrono-tz = { version = "0.8", optional = true }
hashbrown.workspace = true
num.workspace = true
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 @@ -155,7 +155,7 @@ ahash.workspace = true
anyhow.workspace = true
arrow.workspace = true
bitflags.workspace = true
chrono = { version = "0.4", optional = true }
chrono = { version = "0.4", default-features = false, features = ["std"], optional = true }
chrono-tz = { version = "0.8", optional = true }
comfy-table = { version = "6.1.4", optional = true, default_features = false }
hashbrown.workspace = true
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 @@ -55,7 +55,7 @@ anyhow.workspace = true
arrow.workspace = true
async-trait = { version = "0.1.59", optional = true }
bytes = "1.3.0"
chrono = { version = "0.4.23", optional = true }
chrono = { version = "0.4", default-features = false, features = ["std"], optional = true }
chrono-tz = { version = "0.8.1", optional = true }
dirs = "4.0"
flate2 = { version = "1", optional = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion polars/polars-time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Time related code for the polars dataframe library"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
chrono = "0.4"
chrono = { version = "0.4", default-features = false, features = ["std"] }
chrono-tz = { version = "0.8", optional = true }
lexical = { version = "6", default-features = false, features = ["std", "parse-floats", "parse-integers"] }
now = "0.1"
Expand Down

0 comments on commit b7178f1

Please sign in to comment.