From 4c96b57daa789a82ab770a1999d78e38f32beaab Mon Sep 17 00:00:00 2001 From: Andrew Hickman Date: Tue, 11 Jun 2024 19:38:52 +0100 Subject: [PATCH] (cargo-release) protox-parse version 0.6.1 --- Cargo.lock | 2 +- protox-parse/Cargo.toml | 2 +- protox-parse/src/lib.rs | 2 +- protox/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b7990bc..c531dec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -662,7 +662,7 @@ dependencies = [ [[package]] name = "protox-parse" -version = "0.6.0" +version = "0.6.1" dependencies = [ "insta", "logos", diff --git a/protox-parse/Cargo.toml b/protox-parse/Cargo.toml index 3074068..8f63a81 100644 --- a/protox-parse/Cargo.toml +++ b/protox-parse/Cargo.toml @@ -3,7 +3,7 @@ name = "protox-parse" description = "Parsing of protobuf source files" keywords = ["protobuf", "serialization"] categories = ["compilers", "encoding", "parser-implementations"] -version = "0.6.0" +version = "0.6.1" authors = ["Andrew Hickman "] repository = "https://github.com/andrewhickman/protox" documentation = "https://docs.rs/protox-parse" diff --git a/protox-parse/src/lib.rs b/protox-parse/src/lib.rs index 8056dd0..2f173bc 100644 --- a/protox-parse/src/lib.rs +++ b/protox-parse/src/lib.rs @@ -3,7 +3,7 @@ //! See the documentation for [`parse()`] for details. #![warn(missing_debug_implementations, missing_docs)] #![deny(unsafe_code)] -#![doc(html_root_url = "https://docs.rs/protox-parse/0.6.0/")] +#![doc(html_root_url = "https://docs.rs/protox-parse/0.6.1/")] use logos::Span; use prost_types::FileDescriptorProto; diff --git a/protox/Cargo.toml b/protox/Cargo.toml index 8bfea7e..4bc8e37 100644 --- a/protox/Cargo.toml +++ b/protox/Cargo.toml @@ -46,7 +46,7 @@ miette = "7.2.0" prost = "0.12.6" prost-reflect = { version = "0.13.1", features = ["miette", "text-format"] } prost-types = "0.12.6" -protox-parse = { version = "0.6.0", path = "../protox-parse" } +protox-parse = { version = "0.6.1", path = "../protox-parse" } thiserror = "1.0.61" [dev-dependencies]