diff --git a/Cargo.lock b/Cargo.lock index d878224..87745f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1366,7 +1366,7 @@ dependencies = [ [[package]] name = "rpc-agent" -version = "0.1.4" +version = "0.1.5" dependencies = [ "async-trait", "futures", diff --git a/Cargo.toml b/Cargo.toml index 1cf550f..22ce897 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rpc-agent" -version = "0.1.4" +version = "0.1.5" edition = "2024" authors = ["Aminu 'Seun Joshua @seun.aminujoshua@gmail.com"] license = "MIT" diff --git a/README.md b/README.md index 304cea3..b9792bc 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Add this crate to your `Cargo.toml`: ```toml [dependencies] -rpc-agent = "0.1.4" +rpc-agent = "0.1.5" tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] } ``` diff --git a/examples/server/Cargo.toml b/examples/server/Cargo.toml index 2b7fb5c..43b2911 100644 --- a/examples/server/Cargo.toml +++ b/examples/server/Cargo.toml @@ -8,4 +8,4 @@ tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] } futures-util = "0.3.32" tarpc = { version = "0.37", features = ["full"] } -rpc-agent = { version = "0.1.4", path = "../../../rpc-agent" } +rpc-agent = { version = "0.1.5", path = "../../../rpc-agent" }