mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-18 18:10:14 +01:00
removed more dependencies
This commit is contained in:
parent
b219dbefa7
commit
b0ac3de781
|
@ -4,5 +4,4 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1"
|
|
||||||
codepage-437 = "0.1.0"
|
codepage-437 = "0.1.0"
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
use anyhow::Result;
|
|
||||||
use std::net::UdpSocket;
|
use std::net::UdpSocket;
|
||||||
|
use std::io::Result;
|
||||||
|
|
||||||
use super::commands::Command;
|
use super::{
|
||||||
use crate::protocol::Data;
|
commands::Command,
|
||||||
|
protocol::Data,
|
||||||
|
};
|
||||||
|
|
||||||
pub struct Display {
|
pub struct Display {
|
||||||
addr: String,
|
addr: String,
|
||||||
|
|
Loading…
Reference in a new issue