Skip to content

Commit bb05479

Browse files
committed
v10.3.2
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
1 parent 8af0696 commit bb05479

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "3"
33
members = [ "codegen", "protocol", "tcp", "types", "uri" ]
44

55
[workspace.package]
6-
version = "10.3.1"
6+
version = "10.3.2"
77
authors = ["Marc-Antoine Perennou <Marc-Antoine@Perennou.com>"]
88
license = "BSD-2-Clause"
99
repository = "https://github.com/amqp-rs/amq-protocol"

codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ handlebars = "^6.0"
2121
serde_json = "^1.0"
2222

2323
[dependencies.amq-protocol-types]
24-
version = "=10.3.1"
24+
version = "=10.3.2"
2525
path = "../types"
2626

2727
[dependencies.serde]

protocol/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ rustls--aws_lc_rs = ["amq-protocol-tcp/rustls--aws_lc_rs"] # default, bu
4343
rustls--ring = ["amq-protocol-tcp/rustls--ring"] # more compatible, (e.g., easily builds on Windows)
4444

4545
[build-dependencies.amq-protocol-codegen]
46-
version = "=10.3.1"
46+
version = "=10.3.2"
4747
path = "../codegen"
4848
optional = true
4949

5050
[dependencies.amq-protocol-tcp]
51-
version = "=10.3.1"
51+
version = "=10.3.2"
5252
default-features = false
5353
path = "../tcp"
5454

5555
[dependencies.amq-protocol-types]
56-
version = "=10.3.1"
56+
version = "=10.3.2"
5757
path = "../types"
5858

5959
[dependencies.amq-protocol-uri]
60-
version = "=10.3.1"
60+
version = "=10.3.2"
6161
path = "../uri"
6262

6363
[dependencies.cookie-factory]

protocol/templates/protocol.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ pub mod {{snake class.name}} {
166166
use super::*;
167167

168168
/// Parse {{class.name}} (Generated)
169-
pub fn parse_{{snake class.name false}}<I: ParsableInput>(i: I) -> ParserResult<I, {{snake class.name}}::AMQPMethod> {
169+
pub fn parse_{{snake class.name false}}<I: ParsableInput>(i: I) -> ParserResult<I, AMQPMethod> {
170170
context("parse_{{snake class.name false}}", map_opt(flat_map(parse_id, |id| move |i| match id {
171171
{{#each class.methods as |method| ~}}
172172
{{method.id}} => context("parse_{{snake method.name false}}", map(map(parse_{{snake method.name false}}, AMQPMethod::{{camel method.name}}), Some)).parse(i),

tcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ rustls--ring = ["tcp-stream/rustls--ring"] # more compatible, (e.g.
4242
cfg-if = "^1.0"
4343

4444
[dependencies.amq-protocol-uri]
45-
version = "=10.3.1"
45+
version = "=10.3.2"
4646
path = "../uri"
4747

4848
[dependencies.async-rs]

uri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ version.workspace = true
1717
name = "amq_protocol_uri"
1818

1919
[dependencies.amq-protocol-types]
20-
version = "=10.3.1"
20+
version = "=10.3.2"
2121
path = "../types"
2222

2323
[dependencies]

0 commit comments

Comments
 (0)