Using serde_json

This commit is contained in:
2021-05-18 19:24:33 +02:00
parent d25e039751
commit ab40248d48
4 changed files with 37 additions and 53 deletions

View File

@ -4,12 +4,8 @@ mod udp;
mod usimp;
mod websocket;
use openssl::ssl::{SslAcceptor, SslFiletype, SslMethod, SslStream};
use r2d2;
use r2d2::{ManageConnection, Pool};
use r2d2_postgres::{postgres::NoTls, PostgresConnectionManager};
use openssl::ssl::{SslAcceptor, SslFiletype, SslMethod};
use std::net::{SocketAddr, TcpListener, UdpSocket};
use std::ops::Deref;
use std::sync::Arc;
use std::sync::Mutex;
use std::thread;