Skip to content

Commit

Permalink
deps: update dependencies
Browse files Browse the repository at this point in the history
- eyre: 0.4 => 0.6.8
- hashbrown: 0.9 => 0.14.5
- indexmap: 1.6 => 2.5.0
- num-complex: 0.2 => 0.4.6
- chrono-tz: 0.10 => 0.11

Eyre is limited to 0.6.8 to be compatible with MSRV 1.63
Hashbrown limited to 0.14.5: rust-lang/hashbrown#574
Indexmap is limited to 2.5.0 to be compatible with hashbrown 0.14.5
  • Loading branch information
adamcavendish committed Oct 13, 2024
1 parent d2a8251 commit 88766e4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ anyhow = { version = "1.0.1", optional = true }
chrono = { version = "0.4.25", default-features = false, optional = true }
chrono-tz = { version = ">= 0.6, < 0.11", default-features = false, optional = true }
either = { version = "1.9", optional = true }
eyre = { version = ">= 0.4, < 0.7", optional = true }
hashbrown = { version = ">= 0.9, < 0.16", optional = true }
indexmap = { version = ">= 1.6, < 3", optional = true }
eyre = { version = ">= 0.6.8, < 0.7", optional = true }
hashbrown = { version = ">= 0.14.5, < 0.16", optional = true }
indexmap = { version = ">= 2.6.0, < 3", optional = true }
num-bigint = { version = "0.4.2", optional = true }
num-complex = { version = ">= 0.2, < 0.5", optional = true }
num-complex = { version = ">= 0.4.6, < 0.5", optional = true }
num-rational = {version = "0.4.1", optional = true }
rust_decimal = { version = "1.15", default-features = false, optional = true }
serde = { version = "1.0", optional = true }
Expand All @@ -52,7 +52,7 @@ portable-atomic = "1.0"
[dev-dependencies]
assert_approx_eq = "1.1.0"
chrono = "0.4.25"
chrono-tz = ">= 0.6, < 0.11"
chrono-tz = ">= 0.10, < 0.11"
# Required for "and $N others" normalization
trybuild = ">=1.0.70"
proptest = { version = "1.0", default-features = false, features = ["std"] }
Expand Down
12 changes: 12 additions & 0 deletions newsfragments/4617.packaging.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
deps: update dependencies

- eyre: 0.4 => 0.6.8
- hashbrown: 0.9 => 0.14.5
- indexmap: 1.6 => 2.5.0
- num-complex: 0.2 => 0.4.6
- chrono-tz: 0.10 => 0.11

Eyre is limited to 0.6.8 to be compatible with MSRV 1.63
Hashbrown limited to 0.14.5: https://github.com/rust-lang/hashbrown/issues/574
Indexmap is limited to 2.5.0 to be compatible with hashbrown 0.14.5

0 comments on commit 88766e4

Please sign in to comment.