Skip to content

Commit

Permalink
bump semtech-udp version. rename errors module
Browse files Browse the repository at this point in the history
  • Loading branch information
lthiery committed Mar 23, 2022
1 parent 59ae310 commit e1be019
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/helium/gwmp-mux"


[dependencies]
semtech-udp = { version = "0", features = ["server", "client"] }
semtech-udp = { version = ">=0.9.4", features = ["server", "client"] }
tokio = { version = "1", features = ["sync", "io-util", "signal", "io-std"]}
structopt = { version = "0.3.2", default-features = false }
slog = "2"
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ use tokio::{io::AsyncReadExt, signal, time::Duration};
mod gwmp_mux;
use gwmp_mux::*;

mod app_error;
use app_error::Error;
mod errors;
use errors::Error;

pub type Result<T = ()> = std::result::Result<T, Error>;

Expand Down

0 comments on commit e1be019

Please sign in to comment.