From da6c0fe638664800d1072fc385fd03449ac40a19 Mon Sep 17 00:00:00 2001 From: Domenic Quirl Date: Wed, 21 Aug 2024 17:55:42 +0200 Subject: [PATCH 1/2] [Deps] bump indexmap to v2 --- cstree/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cstree/Cargo.toml b/cstree/Cargo.toml index 7af3cc3..d370633 100644 --- a/cstree/Cargo.toml +++ b/cstree/Cargo.toml @@ -21,7 +21,7 @@ triomphe = { version = "0.1.8", default-features = false, features = ["stable_de sptr = "0.3.2" # Default Interner -indexmap = "1.9" +indexmap = "2.4.0" [dependencies.cstree_derive] path = "../cstree-derive" From e723eac481f50ff77ad997e31b7007b3b710ba51 Mon Sep 17 00:00:00 2001 From: Domenic Quirl Date: Wed, 21 Aug 2024 17:56:58 +0200 Subject: [PATCH 2/2] bump version to 0.12.1 --- Cargo.toml | 2 +- cstree/Cargo.toml | 2 +- cstree/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4f9a402..3b7c718 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ resolver = "2" [workspace.package] edition = "2021" -version = "0.12.0" # when updating, also update `#![doc(html_root_url)]` and any inter-crate dependencies (such as `cstree`'s dependency on `cstree-derive`) +version = "0.12.1" # when updating, also update `#![doc(html_root_url)]` and any inter-crate dependencies (such as `cstree`'s dependency on `cstree-derive`) authors = [ "Domenic Quirl ", "Aleksey Kladov ", diff --git a/cstree/Cargo.toml b/cstree/Cargo.toml index d370633..56ec836 100644 --- a/cstree/Cargo.toml +++ b/cstree/Cargo.toml @@ -25,7 +25,7 @@ indexmap = "2.4.0" [dependencies.cstree_derive] path = "../cstree-derive" -version = "0.12.0" # must match the `cstree` version in the virtual workspace manifest +version = "0.12.1" # must match the `cstree` version in the virtual workspace manifest optional = true [dependencies.lasso] diff --git a/cstree/src/lib.rs b/cstree/src/lib.rs index 74d5b78..7b789a6 100644 --- a/cstree/src/lib.rs +++ b/cstree/src/lib.rs @@ -93,7 +93,7 @@ )] #![warn(missing_docs)] // Docs.rs -#![doc(html_root_url = "https://docs.rs/cstree/0.12.0")] +#![doc(html_root_url = "https://docs.rs/cstree/0.12.1")] #![cfg_attr(doc_cfg, feature(doc_cfg))] pub mod getting_started;