Extended range of supported versions of `indexmap` optional dependency to include version 2.
This commit is contained in:
parent
7425206251
commit
b5a1ca058d
|
@ -36,7 +36,7 @@ anyhow = { version = "1.0", optional = true }
|
||||||
chrono = { version = "0.4", default-features = false, optional = true }
|
chrono = { version = "0.4", default-features = false, optional = true }
|
||||||
eyre = { version = ">= 0.4, < 0.7", optional = true }
|
eyre = { version = ">= 0.4, < 0.7", optional = true }
|
||||||
hashbrown = { version = ">= 0.9, < 0.15", optional = true }
|
hashbrown = { version = ">= 0.9, < 0.15", optional = true }
|
||||||
indexmap = { version = "1.6", optional = true }
|
indexmap = { version = ">= 1.6, < 3", optional = true }
|
||||||
num-bigint = { version = "0.4", optional = true }
|
num-bigint = { version = "0.4", optional = true }
|
||||||
num-complex = { version = ">= 0.2, < 0.5", optional = true }
|
num-complex = { version = ">= 0.2, < 0.5", optional = true }
|
||||||
rust_decimal = { version = "1.0.0", default-features = false, optional = true }
|
rust_decimal = { version = "1.0.0", default-features = false, optional = true }
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Extended range of supported versions of `indexmap` optional dependency to include version 2.
|
|
@ -472,6 +472,7 @@ def set_minimal_package_versions(session: nox.Session):
|
||||||
"rayon-core": "1.10.2",
|
"rayon-core": "1.10.2",
|
||||||
"regex": "1.7.3",
|
"regex": "1.7.3",
|
||||||
"proptest": "1.0.0",
|
"proptest": "1.0.0",
|
||||||
|
"indexmap": "1.9.3",
|
||||||
}
|
}
|
||||||
|
|
||||||
# run cargo update first to ensure that everything is at highest
|
# run cargo update first to ensure that everything is at highest
|
||||||
|
|
Loading…
Reference in New Issue