From 6194c279687f0b0590e12cbd323e19864652fb94 Mon Sep 17 00:00:00 2001 From: Cooper Quintin Date: Mon, 29 Jan 2024 17:06:15 -0800 Subject: [PATCH] directory move --- Cargo.lock | 42 +++++++++---------- Cargo.toml | 2 +- {wavehunter => rayhunter}/Cargo.toml | 2 +- {wavehunter => rayhunter}/src/config.rs | 0 {wavehunter => rayhunter}/src/diag.rs | 0 {wavehunter => rayhunter}/src/error.rs | 0 {wavehunter => rayhunter}/src/main.rs | 0 {wavehunter => rayhunter}/src/pcap.rs | 0 {wavehunter => rayhunter}/src/qmdl_store.rs | 0 {wavehunter => rayhunter}/src/server.rs | 0 {wavehunter => rayhunter}/src/stats.rs | 0 .../static/css/style.css | 0 {wavehunter => rayhunter}/static/index.html | 0 {wavehunter => rayhunter}/static/js/main.js | 0 14 files changed, 23 insertions(+), 23 deletions(-) rename {wavehunter => rayhunter}/Cargo.toml (96%) rename {wavehunter => rayhunter}/src/config.rs (100%) rename {wavehunter => rayhunter}/src/diag.rs (100%) rename {wavehunter => rayhunter}/src/error.rs (100%) rename {wavehunter => rayhunter}/src/main.rs (100%) rename {wavehunter => rayhunter}/src/pcap.rs (100%) rename {wavehunter => rayhunter}/src/qmdl_store.rs (100%) rename {wavehunter => rayhunter}/src/server.rs (100%) rename {wavehunter => rayhunter}/src/stats.rs (100%) rename {wavehunter => rayhunter}/static/css/style.css (100%) rename {wavehunter => rayhunter}/static/index.html (100%) rename {wavehunter => rayhunter}/static/js/main.js (100%) diff --git a/Cargo.lock b/Cargo.lock index f2e3207..c60c788 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -899,6 +899,27 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" +[[package]] +name = "rayhunter" +version = "0.1.0" +dependencies = [ + "axum", + "chrono", + "env_logger", + "futures-core", + "futures-macro", + "include_dir", + "log", + "mime_guess", + "orca", + "serde", + "tempdir", + "thiserror", + "tokio", + "tokio-util", + "toml", +] + [[package]] name = "rdrand" version = "0.4.0" @@ -1387,27 +1408,6 @@ version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" -[[package]] -name = "wavehunter" -version = "0.1.0" -dependencies = [ - "axum", - "chrono", - "env_logger", - "futures-core", - "futures-macro", - "include_dir", - "log", - "mime_guess", - "orca", - "serde", - "tempdir", - "thiserror", - "tokio", - "tokio-util", - "toml", -] - [[package]] name = "winapi" version = "0.3.9" diff --git a/Cargo.toml b/Cargo.toml index a019f56..958cdeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,6 @@ members = [ "orca", - "wavehunter", + "rayhunter", ] resolver = "2" diff --git a/wavehunter/Cargo.toml b/rayhunter/Cargo.toml similarity index 96% rename from wavehunter/Cargo.toml rename to rayhunter/Cargo.toml index af25014..9538413 100644 --- a/wavehunter/Cargo.toml +++ b/rayhunter/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "wavehunter" +name = "rayhunter" version = "0.1.0" edition = "2021" diff --git a/wavehunter/src/config.rs b/rayhunter/src/config.rs similarity index 100% rename from wavehunter/src/config.rs rename to rayhunter/src/config.rs diff --git a/wavehunter/src/diag.rs b/rayhunter/src/diag.rs similarity index 100% rename from wavehunter/src/diag.rs rename to rayhunter/src/diag.rs diff --git a/wavehunter/src/error.rs b/rayhunter/src/error.rs similarity index 100% rename from wavehunter/src/error.rs rename to rayhunter/src/error.rs diff --git a/wavehunter/src/main.rs b/rayhunter/src/main.rs similarity index 100% rename from wavehunter/src/main.rs rename to rayhunter/src/main.rs diff --git a/wavehunter/src/pcap.rs b/rayhunter/src/pcap.rs similarity index 100% rename from wavehunter/src/pcap.rs rename to rayhunter/src/pcap.rs diff --git a/wavehunter/src/qmdl_store.rs b/rayhunter/src/qmdl_store.rs similarity index 100% rename from wavehunter/src/qmdl_store.rs rename to rayhunter/src/qmdl_store.rs diff --git a/wavehunter/src/server.rs b/rayhunter/src/server.rs similarity index 100% rename from wavehunter/src/server.rs rename to rayhunter/src/server.rs diff --git a/wavehunter/src/stats.rs b/rayhunter/src/stats.rs similarity index 100% rename from wavehunter/src/stats.rs rename to rayhunter/src/stats.rs diff --git a/wavehunter/static/css/style.css b/rayhunter/static/css/style.css similarity index 100% rename from wavehunter/static/css/style.css rename to rayhunter/static/css/style.css diff --git a/wavehunter/static/index.html b/rayhunter/static/index.html similarity index 100% rename from wavehunter/static/index.html rename to rayhunter/static/index.html diff --git a/wavehunter/static/js/main.js b/rayhunter/static/js/main.js similarity index 100% rename from wavehunter/static/js/main.js rename to rayhunter/static/js/main.js