Skip to content

Commit

Permalink
Merge #2939
Browse files Browse the repository at this point in the history
2939: Disable default features of `chrono` r=adamreichold a=messense

To avoid bringing `time` v0.1.x into dependency graph, see time-rs/time#293

Co-authored-by: messense <messense@icloud.com>
  • Loading branch information
bors[bot] and messense authored Feb 9, 2023
2 parents 5d1e219 + 2ac6006 commit 6757391
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ inventory = { version = "0.3.0", optional = true }

# crate integrations that can be added using the eponymous features
anyhow = { version = "1.0", optional = true }
chrono = { version = "0.4", optional = true }
chrono = { version = "0.4", default-features = false, optional = true }
eyre = { version = ">= 0.4, < 0.7", optional = true }
hashbrown = { version = ">= 0.9, < 0.14", optional = true }
indexmap = { version = "1.6", optional = true }
Expand Down
1 change: 1 addition & 0 deletions newsfragments/2939.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Disable default features of `chrono` to avoid depending on `time` v0.1.x.

0 comments on commit 6757391

Please sign in to comment.