From 40a5e8d1766bb42764d3aa86cc895d3f752bbf33 Mon Sep 17 00:00:00 2001 From: Daniel Sanchez Quiros Date: Thu, 7 Nov 2024 10:27:52 +0700 Subject: [PATCH] Rename to netrunner --- .gitignore | 2 +- {network-runner => netrunner}/Cargo.lock | 0 {network-runner => netrunner}/Cargo.toml | 0 {network-runner => netrunner}/README.md | 0 {network-runner => netrunner}/config/carnot_dev.json | 0 {network-runner => netrunner}/config/mixnode.json | 0 {network-runner => netrunner}/src/bin/app/log.rs | 0 {network-runner => netrunner}/src/bin/app/main.rs | 0 {network-runner => netrunner}/src/lib.rs | 0 {network-runner => netrunner}/src/network/behaviour.rs | 0 {network-runner => netrunner}/src/network/mod.rs | 0 {network-runner => netrunner}/src/network/regions.rs | 0 {network-runner => netrunner}/src/node/dummy_streaming.rs | 0 {network-runner => netrunner}/src/node/mix/consensus_streams.rs | 0 {network-runner => netrunner}/src/node/mix/lottery.rs | 0 {network-runner => netrunner}/src/node/mix/mod.rs | 0 {network-runner => netrunner}/src/node/mix/scheduler.rs | 0 {network-runner => netrunner}/src/node/mix/state.rs | 0 {network-runner => netrunner}/src/node/mix/stream_wrapper.rs | 0 {network-runner => netrunner}/src/node/mod.rs | 0 {network-runner => netrunner}/src/output_processors/mod.rs | 0 {network-runner => netrunner}/src/runner/async_runner.rs | 0 {network-runner => netrunner}/src/runner/mod.rs | 0 {network-runner => netrunner}/src/runner/sync_runner.rs | 0 {network-runner => netrunner}/src/settings.rs | 0 {network-runner => netrunner}/src/streaming/io.rs | 0 {network-runner => netrunner}/src/streaming/mod.rs | 0 {network-runner => netrunner}/src/streaming/naive.rs | 0 {network-runner => netrunner}/src/streaming/polars.rs | 0 .../src/streaming/runtime_subscriber.rs | 0 .../src/streaming/settings_subscriber.rs | 0 {network-runner => netrunner}/src/warding/mod.rs | 0 {network-runner => netrunner}/src/warding/ttf.rs | 0 33 files changed, 1 insertion(+), 1 deletion(-) rename {network-runner => netrunner}/Cargo.lock (100%) rename {network-runner => netrunner}/Cargo.toml (100%) rename {network-runner => netrunner}/README.md (100%) rename {network-runner => netrunner}/config/carnot_dev.json (100%) rename {network-runner => netrunner}/config/mixnode.json (100%) rename {network-runner => netrunner}/src/bin/app/log.rs (100%) rename {network-runner => netrunner}/src/bin/app/main.rs (100%) rename {network-runner => netrunner}/src/lib.rs (100%) rename {network-runner => netrunner}/src/network/behaviour.rs (100%) rename {network-runner => netrunner}/src/network/mod.rs (100%) rename {network-runner => netrunner}/src/network/regions.rs (100%) rename {network-runner => netrunner}/src/node/dummy_streaming.rs (100%) rename {network-runner => netrunner}/src/node/mix/consensus_streams.rs (100%) rename {network-runner => netrunner}/src/node/mix/lottery.rs (100%) rename {network-runner => netrunner}/src/node/mix/mod.rs (100%) rename {network-runner => netrunner}/src/node/mix/scheduler.rs (100%) rename {network-runner => netrunner}/src/node/mix/state.rs (100%) rename {network-runner => netrunner}/src/node/mix/stream_wrapper.rs (100%) rename {network-runner => netrunner}/src/node/mod.rs (100%) rename {network-runner => netrunner}/src/output_processors/mod.rs (100%) rename {network-runner => netrunner}/src/runner/async_runner.rs (100%) rename {network-runner => netrunner}/src/runner/mod.rs (100%) rename {network-runner => netrunner}/src/runner/sync_runner.rs (100%) rename {network-runner => netrunner}/src/settings.rs (100%) rename {network-runner => netrunner}/src/streaming/io.rs (100%) rename {network-runner => netrunner}/src/streaming/mod.rs (100%) rename {network-runner => netrunner}/src/streaming/naive.rs (100%) rename {network-runner => netrunner}/src/streaming/polars.rs (100%) rename {network-runner => netrunner}/src/streaming/runtime_subscriber.rs (100%) rename {network-runner => netrunner}/src/streaming/settings_subscriber.rs (100%) rename {network-runner => netrunner}/src/warding/mod.rs (100%) rename {network-runner => netrunner}/src/warding/ttf.rs (100%) diff --git a/.gitignore b/.gitignore index d8a5322..3c78ada 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,5 @@ __pycache__/ *$py.class *.so simulation -network-runner/target +netrunner/target .idea/ \ No newline at end of file diff --git a/network-runner/Cargo.lock b/netrunner/Cargo.lock similarity index 100% rename from network-runner/Cargo.lock rename to netrunner/Cargo.lock diff --git a/network-runner/Cargo.toml b/netrunner/Cargo.toml similarity index 100% rename from network-runner/Cargo.toml rename to netrunner/Cargo.toml diff --git a/network-runner/README.md b/netrunner/README.md similarity index 100% rename from network-runner/README.md rename to netrunner/README.md diff --git a/network-runner/config/carnot_dev.json b/netrunner/config/carnot_dev.json similarity index 100% rename from network-runner/config/carnot_dev.json rename to netrunner/config/carnot_dev.json diff --git a/network-runner/config/mixnode.json b/netrunner/config/mixnode.json similarity index 100% rename from network-runner/config/mixnode.json rename to netrunner/config/mixnode.json diff --git a/network-runner/src/bin/app/log.rs b/netrunner/src/bin/app/log.rs similarity index 100% rename from network-runner/src/bin/app/log.rs rename to netrunner/src/bin/app/log.rs diff --git a/network-runner/src/bin/app/main.rs b/netrunner/src/bin/app/main.rs similarity index 100% rename from network-runner/src/bin/app/main.rs rename to netrunner/src/bin/app/main.rs diff --git a/network-runner/src/lib.rs b/netrunner/src/lib.rs similarity index 100% rename from network-runner/src/lib.rs rename to netrunner/src/lib.rs diff --git a/network-runner/src/network/behaviour.rs b/netrunner/src/network/behaviour.rs similarity index 100% rename from network-runner/src/network/behaviour.rs rename to netrunner/src/network/behaviour.rs diff --git a/network-runner/src/network/mod.rs b/netrunner/src/network/mod.rs similarity index 100% rename from network-runner/src/network/mod.rs rename to netrunner/src/network/mod.rs diff --git a/network-runner/src/network/regions.rs b/netrunner/src/network/regions.rs similarity index 100% rename from network-runner/src/network/regions.rs rename to netrunner/src/network/regions.rs diff --git a/network-runner/src/node/dummy_streaming.rs b/netrunner/src/node/dummy_streaming.rs similarity index 100% rename from network-runner/src/node/dummy_streaming.rs rename to netrunner/src/node/dummy_streaming.rs diff --git a/network-runner/src/node/mix/consensus_streams.rs b/netrunner/src/node/mix/consensus_streams.rs similarity index 100% rename from network-runner/src/node/mix/consensus_streams.rs rename to netrunner/src/node/mix/consensus_streams.rs diff --git a/network-runner/src/node/mix/lottery.rs b/netrunner/src/node/mix/lottery.rs similarity index 100% rename from network-runner/src/node/mix/lottery.rs rename to netrunner/src/node/mix/lottery.rs diff --git a/network-runner/src/node/mix/mod.rs b/netrunner/src/node/mix/mod.rs similarity index 100% rename from network-runner/src/node/mix/mod.rs rename to netrunner/src/node/mix/mod.rs diff --git a/network-runner/src/node/mix/scheduler.rs b/netrunner/src/node/mix/scheduler.rs similarity index 100% rename from network-runner/src/node/mix/scheduler.rs rename to netrunner/src/node/mix/scheduler.rs diff --git a/network-runner/src/node/mix/state.rs b/netrunner/src/node/mix/state.rs similarity index 100% rename from network-runner/src/node/mix/state.rs rename to netrunner/src/node/mix/state.rs diff --git a/network-runner/src/node/mix/stream_wrapper.rs b/netrunner/src/node/mix/stream_wrapper.rs similarity index 100% rename from network-runner/src/node/mix/stream_wrapper.rs rename to netrunner/src/node/mix/stream_wrapper.rs diff --git a/network-runner/src/node/mod.rs b/netrunner/src/node/mod.rs similarity index 100% rename from network-runner/src/node/mod.rs rename to netrunner/src/node/mod.rs diff --git a/network-runner/src/output_processors/mod.rs b/netrunner/src/output_processors/mod.rs similarity index 100% rename from network-runner/src/output_processors/mod.rs rename to netrunner/src/output_processors/mod.rs diff --git a/network-runner/src/runner/async_runner.rs b/netrunner/src/runner/async_runner.rs similarity index 100% rename from network-runner/src/runner/async_runner.rs rename to netrunner/src/runner/async_runner.rs diff --git a/network-runner/src/runner/mod.rs b/netrunner/src/runner/mod.rs similarity index 100% rename from network-runner/src/runner/mod.rs rename to netrunner/src/runner/mod.rs diff --git a/network-runner/src/runner/sync_runner.rs b/netrunner/src/runner/sync_runner.rs similarity index 100% rename from network-runner/src/runner/sync_runner.rs rename to netrunner/src/runner/sync_runner.rs diff --git a/network-runner/src/settings.rs b/netrunner/src/settings.rs similarity index 100% rename from network-runner/src/settings.rs rename to netrunner/src/settings.rs diff --git a/network-runner/src/streaming/io.rs b/netrunner/src/streaming/io.rs similarity index 100% rename from network-runner/src/streaming/io.rs rename to netrunner/src/streaming/io.rs diff --git a/network-runner/src/streaming/mod.rs b/netrunner/src/streaming/mod.rs similarity index 100% rename from network-runner/src/streaming/mod.rs rename to netrunner/src/streaming/mod.rs diff --git a/network-runner/src/streaming/naive.rs b/netrunner/src/streaming/naive.rs similarity index 100% rename from network-runner/src/streaming/naive.rs rename to netrunner/src/streaming/naive.rs diff --git a/network-runner/src/streaming/polars.rs b/netrunner/src/streaming/polars.rs similarity index 100% rename from network-runner/src/streaming/polars.rs rename to netrunner/src/streaming/polars.rs diff --git a/network-runner/src/streaming/runtime_subscriber.rs b/netrunner/src/streaming/runtime_subscriber.rs similarity index 100% rename from network-runner/src/streaming/runtime_subscriber.rs rename to netrunner/src/streaming/runtime_subscriber.rs diff --git a/network-runner/src/streaming/settings_subscriber.rs b/netrunner/src/streaming/settings_subscriber.rs similarity index 100% rename from network-runner/src/streaming/settings_subscriber.rs rename to netrunner/src/streaming/settings_subscriber.rs diff --git a/network-runner/src/warding/mod.rs b/netrunner/src/warding/mod.rs similarity index 100% rename from network-runner/src/warding/mod.rs rename to netrunner/src/warding/mod.rs diff --git a/network-runner/src/warding/ttf.rs b/netrunner/src/warding/ttf.rs similarity index 100% rename from network-runner/src/warding/ttf.rs rename to netrunner/src/warding/ttf.rs