From c14dcf1998f5ba1ffea813da4f793fc3bde8c2b7 Mon Sep 17 00:00:00 2001 From: tom barrett Date: Mon, 26 Feb 2018 08:51:08 -0600 Subject: -figured out way to deserialize using serde_erased --- src/connection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/connection.rs') diff --git a/src/connection.rs b/src/connection.rs index 59031c6..9cf7923 100644 --- a/src/connection.rs +++ b/src/connection.rs @@ -92,7 +92,7 @@ impl Connection { let mut send = String::new(); for mass in within_range { send.push_str(&mass.serialize()); - send.push_str(","); + send.push_str(";"); } send.push_str("\n"); match self.stream.write(send.as_bytes()) { -- cgit v1.2.3