aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorhozan23 <hozan23@karyontech.net>2024-05-27 00:48:15 +0200
committerhozan23 <hozan23@karyontech.net>2024-05-27 00:48:15 +0200
commit3acb724ba1aafeaf37e24dada7c769bb4066444a (patch)
treede80b01229ce133334176694571fbdf4a49402b6 /net
parente022b2b77e3e98f0f444f637f96e74e6a6f990cf (diff)
net: add serde feature for serializing & deserializing Endpoints
Diffstat (limited to 'net')
-rw-r--r--net/Cargo.toml4
-rw-r--r--net/src/endpoint.rs5
2 files changed, 9 insertions, 0 deletions
diff --git a/net/Cargo.toml b/net/Cargo.toml
index 3206a0f..01a54a7 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -32,6 +32,7 @@ tokio = [
# TODO: use tls feature
"tokio-rustls",
]
+serde = ["dep:serde"]
[dependencies]
@@ -58,5 +59,8 @@ futures-rustls = { version = "0.25.1", optional = true }
tokio-rustls = { version = "0.26.0", optional = true }
tokio = { version = "1.37.0", features = ["io-util"], optional = true }
+# serde
+serde = { version = "1.0.197", features = ["derive"], optional = true }
+
[dev-dependencies]
smol = "2.0.0"
diff --git a/net/src/endpoint.rs b/net/src/endpoint.rs
index 5aebdf9..9fb949b 100644
--- a/net/src/endpoint.rs
+++ b/net/src/endpoint.rs
@@ -9,6 +9,9 @@ use std::os::unix::net::SocketAddr as UnixSocketAddr;
use bincode::{Decode, Encode};
use url::Url;
+#[cfg(feature = "serde")]
+use serde::{Deserialize, Serialize};
+
use crate::{Error, Result};
/// Port defined as a u16.
@@ -31,6 +34,7 @@ pub type Port = u16;
/// ```
///
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
+#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum Endpoint {
Udp(Addr, Port),
Tcp(Addr, Port),
@@ -200,6 +204,7 @@ impl Endpoint {
/// Addr defines a type for an address, either IP or domain.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Encode, Decode)]
+#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum Addr {
Ip(IpAddr),
Domain(String),