diff --git a/Cargo.toml b/Cargo.toml index 25cbda3..96f633c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["jarust", "jarust_plugins", "jarust_rt", "jarust_transport"] [workspace.package] -version = "0.4.0" +version = "0.5.0" authors = ["Hamza Jadid"] description = "A janus client SDK in Rust" readme = "README.md" diff --git a/jarust/Cargo.toml b/jarust/Cargo.toml index def9498..1c116e3 100644 --- a/jarust/Cargo.toml +++ b/jarust/Cargo.toml @@ -18,8 +18,8 @@ async-trait.workspace = true bytes.workspace = true futures-util = "0.3.29" indexmap = "2.2.6" -jarust_rt = { version = "0.4.0", path = "../jarust_rt" } -jarust_transport = { version = "0.4.0", path = "../jarust_transport" } +jarust_rt = { version = "0.5.0", path = "../jarust_rt" } +jarust_transport = { version = "0.5.0", path = "../jarust_transport" } rand = "0.8.5" serde_json.workspace = true serde.workspace = true diff --git a/jarust_plugins/Cargo.toml b/jarust_plugins/Cargo.toml index 100deea..71b22d4 100644 --- a/jarust_plugins/Cargo.toml +++ b/jarust_plugins/Cargo.toml @@ -15,9 +15,9 @@ doctest = false [dependencies] async-trait.workspace = true -jarust = { version = "0.4.0", path = "../jarust" } -jarust_rt = { version = "0.4.0", path = "../jarust_rt" } -jarust_transport = { version = "0.4.0", path = "../jarust_transport" } +jarust = { version = "0.5.0", path = "../jarust" } +jarust_rt = { version = "0.5.0", path = "../jarust_rt" } +jarust_transport = { version = "0.5.0", path = "../jarust_transport" } serde_json.workspace = true serde.workspace = true tokio = { workspace = true, features = ["sync"] } diff --git a/jarust_transport/Cargo.toml b/jarust_transport/Cargo.toml index cbc5ee8..29f8639 100644 --- a/jarust_transport/Cargo.toml +++ b/jarust_transport/Cargo.toml @@ -15,7 +15,7 @@ async-trait.workspace = true bytes.workspace = true futures-util = "0.3.29" indexmap = "2.2.6" -jarust_rt = { version = "0.4.0", path = "../jarust_rt" } +jarust_rt = { version = "0.5.0", path = "../jarust_rt" } rand = "0.8.5" serde_json.workspace = true serde.workspace = true