diff --git a/Cargo.lock b/Cargo.lock index a25d8fa..d51c560 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -243,9 +243,9 @@ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" [[package]] name = "indexmap" -version = "2.6.0" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" +checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652" dependencies = [ "equivalent", "hashbrown", diff --git a/savefile-test/Cargo.toml b/savefile-test/Cargo.toml index 84e48c0..196be23 100644 --- a/savefile-test/Cargo.toml +++ b/savefile-test/Cargo.toml @@ -19,7 +19,7 @@ savefile-abi = { path = "../savefile-abi" , features = ["bytes"]} bit-vec = "0.8" arrayvec="0.7" smallvec="*" -indexmap = { version = "2.6"} +indexmap = { version = "2.7"} byteorder="*" rand="0.8" parking_lot="0.12" diff --git a/savefile/Cargo.toml b/savefile/Cargo.toml index 1456ca0..b59fc05 100644 --- a/savefile/Cargo.toml +++ b/savefile/Cargo.toml @@ -55,7 +55,7 @@ nalgebra = { version = "0.33", optional = true} bit-vec08 = { package="bit-vec", version = "0.8", optional = true} arrayvec = { version = "0.7", optional = true} smallvec = { version = "1.11", optional = true} -indexmap = { version = "2.6", optional = true} +indexmap = { version = "2.7", optional = true} parking_lot = { version = "0.12", optional = true } ring = {version = "0.17.8", optional = true} rand = { version = "0.8", optional = true}