Skip to content

Commit

Permalink
build: update crates
Browse files Browse the repository at this point in the history
  • Loading branch information
SkuldNorniern committed Mar 21, 2024
1 parent 1f07111 commit 7bbecbc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/SkuldNorniern/fluere"

[dependencies]
clap = { version = "4.0.32", features = ["cargo"] }
tokio = { version = "1.32", features = ["full", "macros", "rt-multi-thread"] }
tokio = { version = "1.36", features = ["full", "macros", "rt-multi-thread"] }
pnet = { version = "0.34.0", features = ["std"] }
pnet_macros_support = "0.34.0"
pnet_macros = "0.34.0"
Expand Down
6 changes: 3 additions & 3 deletions fluere-plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ repository = "https://github.com/SkuldNorniern/fluere"


[dependencies]
git2 = "0.18.1"
tokio = { version = "1.32", features = ["full","macros", "rt-multi-thread"] }
git2 = "0.18.3"
tokio = { version = "1.36", features = ["full","macros", "rt-multi-thread"] }
fluere-config = { version = "0.2.0", path = "../fluere-config" }
#fluere-plugin-trait = { path = "../fluere-plugin-trait" }
fluereflow = { version = "0.3.2", path = "../fluereflow" }
dirs = "5.0.1"
mlua = { version = "0.9.2", features = ["lua54", "vendored","async","send"] }
mlua = { version = "0.9.6", features = ["lua54", "vendored","async","send"] }
inksac = "0.4.0"

log = { version = "0.4.21", features = ["std"], optional = true }
Expand Down
4 changes: 2 additions & 2 deletions src/net/offline_fluereflows.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{collections::HashMap, fs, time::Instant, path::Path};
use std::{collections::HashMap, fs, path::Path, time::Instant};

use crate::{
net::{
Expand All @@ -17,7 +17,7 @@ use pcap::Capture;
use tokio::task;

pub async fn fluereflow_fileparse(arg: Args) -> Result<(), FluereError> {
let csv_file = arg.files.csv.unwrap();
let _csv_file = arg.files.csv.unwrap();
let file_name = arg.files.file.unwrap();
let use_mac = arg.parameters.use_mac.unwrap();
let flow_timeout = arg.parameters.timeout.unwrap();
Expand Down

0 comments on commit 7bbecbc

Please sign in to comment.