Skip to content

Commit

Permalink
Removed unused imports and removed local tdf path for cross compile b…
Browse files Browse the repository at this point in the history
…uild
  • Loading branch information
jacobtread committed Sep 11, 2023
1 parent aaf3132 commit f0a4ab9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 4 additions & 0 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 @@ -54,7 +54,7 @@ hyper = "0.14.25"
tower = "0.4"

bitflags = "2.3.1"
tdf = { version = "0.1", path = "../../tdf" }
tdf = { version = "0.1" }
bytes = "1.4.0"


Expand Down
7 changes: 1 addition & 6 deletions src/session/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,7 @@ use crate::{

use interlink::prelude::*;
use log::{debug, log_enabled};
use std::{
fmt::Debug,
io,
net::{Ipv4Addr, SocketAddr},
sync::Arc,
};
use std::{fmt::Debug, io, net::Ipv4Addr, sync::Arc};
use tdf::{ObjectId, TdfSerialize, TdfType, TdfTyped};

use self::{
Expand Down
1 change: 0 additions & 1 deletion src/session/routes/user_sessions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ use crate::{
},
utils::models::NetworkAddress,
};
use std::net::SocketAddr;

/// Attempts to lookup another authenticated session details
///
Expand Down

0 comments on commit f0a4ab9

Please sign in to comment.