diff --git a/Cargo.lock b/Cargo.lock index 060f9e1a..859c0fc5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -221,7 +221,7 @@ dependencies = [ [[package]] name = "cloudmqtt" -version = "0.2.0" +version = "0.3.0" dependencies = [ "arc-swap", "async-trait", @@ -592,7 +592,7 @@ dependencies = [ [[package]] name = "mqtt-format" -version = "0.2.0" +version = "0.3.0" dependencies = [ "futures", "nom", diff --git a/Cargo.toml b/Cargo.toml index 3de15bb9..758ab936 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudmqtt" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Marcel Müller "] description = "A pure Rust MQTT client and server library" @@ -35,7 +35,7 @@ bytes = "1.3.0" clap = { version = "4.0.32", optional = true, features = ["derive"] } dashmap = "5.4.0" futures = "0.3.25" -mqtt-format = { version = "0.2.0", path = "mqtt-format", features = ["yoke"] } +mqtt-format = { version = "0.3.0", path = "mqtt-format", features = ["yoke"] } nom = { version = "7.1.2" } thiserror = "1.0.38" tokio = { version = "1.23.0", default-features = false, features = [ diff --git a/mqtt-format/Cargo.toml b/mqtt-format/Cargo.toml index 1ccc5803..4aa211a2 100644 --- a/mqtt-format/Cargo.toml +++ b/mqtt-format/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mqtt-format" -version = "0.2.0" +version = "0.3.0" edition = "2021" description = "A pure Rust MQTT packet parser and serializer" readme = "README.md" diff --git a/mqtt-tester/Cargo.toml b/mqtt-tester/Cargo.toml index 46456ac6..b6d1f418 100644 --- a/mqtt-tester/Cargo.toml +++ b/mqtt-tester/Cargo.toml @@ -11,7 +11,7 @@ bytes = "1.1.0" clap = { version = "3.2.8", features = ["derive"] } futures = "0.3" miette = { version = "5.1.1", features = ["fancy"] } -mqtt-format = { path = "../mqtt-format", version = "0.2.0" } +mqtt-format = { path = "../mqtt-format", version = "0.3.0" } nom = { version = "7.1.2" } textwrap = "0.15.0" tokio = { version = "1.20", features = ["macros", "process", "rt", "rt-multi-thread", "io-util", "time"] }