From 52d61f4918eb2d48488c2f0bfc783555ea4f702f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 10:46:11 +0000 Subject: [PATCH] Update rstar requirement from 0.11 to 0.12 Updates the requirements on [rstar](https://github.com/georust/rstar) to permit the latest version. - [Release notes](https://github.com/georust/rstar/releases) - [Commits](https://github.com/georust/rstar/compare/v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: rstar dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index efd1f4d..9c384b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ include = ["src/**/*", "LICENSE", "README.md"] rust-version = "1.64" [dependencies] -rstar = { version = "0.11", optional = true } +rstar = { version = "0.12", optional = true } serde = { version = "~1.0", optional = true, features = ["derive"] } rayon = { version = "1", optional = true } flate2 = { version = "1.0", optional = true }