diff --git a/Cargo.toml b/Cargo.toml index 4b949a3..c17feb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc" -version = "0.7.1" +version = "0.7.2" authors = ["Adam Wright ", "Tim Kuehn "] license = "MIT" documentation = "https://docs.rs/tarpc" @@ -26,7 +26,7 @@ net2 = "0.2" num_cpus = "1.0" serde = "0.9" serde_derive = "0.9" -tarpc-plugins = { path = "src/plugins", version = "0.1" } +tarpc-plugins = { path = "src/plugins", version = "0.1.1" } thread-pool = "0.1.1" tokio-core = "0.1.6" tokio-io = "0.1" diff --git a/README.md b/README.md index 94ceb73..3b8ac46 100644 --- a/README.md +++ b/README.md @@ -37,8 +37,8 @@ arguments to tarpc fns. Add to your `Cargo.toml` dependencies: ```toml -tarpc = { git = "https://github.com/google/tarpc" } -tarpc-plugins = { git = "https://github.com/google/tarpc" } +tarpc = "0.7.2" +tarpc-plugins = "0.1.1" ``` ## Example: Sync diff --git a/src/plugins/Cargo.toml b/src/plugins/Cargo.toml index e8855f7..f871de7 100644 --- a/src/plugins/Cargo.toml +++ b/src/plugins/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc-plugins" -version = "0.1.0" +version = "0.1.1" authors = ["Adam Wright ", "Tim Kuehn "] license = "MIT" documentation = "https://docs.rs/tarpc"