diff --git a/Cargo.lock b/Cargo.lock index 146a4fa..1dea3fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -701,7 +701,7 @@ dependencies = [ [[package]] name = "quic-rpc" -version = "0.6.3" +version = "0.7.0" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 8543bb9..65f41d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quic-rpc" -version = "0.6.3" +version = "0.7.0" edition = "2021" authors = ["RĂ¼diger Klaehn "] keywords = ["api", "protocol", "network", "rpc"] diff --git a/src/server.rs b/src/server.rs index 21b01e7..d5be6aa 100644 --- a/src/server.rs +++ b/src/server.rs @@ -20,7 +20,7 @@ use std::{ /// A server channel for a specific service. /// -/// This is a wrapper around a [ServiceEndpoint](crate::ServiceEndpoint) that serves as the entry point for the server DSL. +/// This is a wrapper around a [ServiceEndpoint] that serves as the entry point for the server DSL. /// `S` is the service type, `C` is the channel type. #[derive(Debug)] pub struct RpcServer {