From 02d9f5937ea5d5ce78f6f4a89c7400bfd1881057 Mon Sep 17 00:00:00 2001 From: Timur Gordon <31495328+timurgordon@users.noreply.github.com> Date: Wed, 6 Aug 2025 15:09:52 +0200 Subject: [PATCH] remove local deps paths --- {src => _archive}/dispatcher/.gitignore | 0 {src => _archive}/dispatcher/Cargo.toml | 0 {src => _archive}/dispatcher/README.md | 0 {src => _archive}/dispatcher/cmd/README.md | 0 {src => _archive}/dispatcher/cmd/dispatcher.rs | 0 {src => _archive}/dispatcher/docs/ARCHITECTURE.md | 0 {src => _archive}/dispatcher/examples/timeout_example.rs | 0 {src => _archive}/dispatcher/src/lib.rs | 0 src/macros/Cargo.toml | 4 ++-- 9 files changed, 2 insertions(+), 2 deletions(-) rename {src => _archive}/dispatcher/.gitignore (100%) rename {src => _archive}/dispatcher/Cargo.toml (100%) rename {src => _archive}/dispatcher/README.md (100%) rename {src => _archive}/dispatcher/cmd/README.md (100%) rename {src => _archive}/dispatcher/cmd/dispatcher.rs (100%) rename {src => _archive}/dispatcher/docs/ARCHITECTURE.md (100%) rename {src => _archive}/dispatcher/examples/timeout_example.rs (100%) rename {src => _archive}/dispatcher/src/lib.rs (100%) diff --git a/src/dispatcher/.gitignore b/_archive/dispatcher/.gitignore similarity index 100% rename from src/dispatcher/.gitignore rename to _archive/dispatcher/.gitignore diff --git a/src/dispatcher/Cargo.toml b/_archive/dispatcher/Cargo.toml similarity index 100% rename from src/dispatcher/Cargo.toml rename to _archive/dispatcher/Cargo.toml diff --git a/src/dispatcher/README.md b/_archive/dispatcher/README.md similarity index 100% rename from src/dispatcher/README.md rename to _archive/dispatcher/README.md diff --git a/src/dispatcher/cmd/README.md b/_archive/dispatcher/cmd/README.md similarity index 100% rename from src/dispatcher/cmd/README.md rename to _archive/dispatcher/cmd/README.md diff --git a/src/dispatcher/cmd/dispatcher.rs b/_archive/dispatcher/cmd/dispatcher.rs similarity index 100% rename from src/dispatcher/cmd/dispatcher.rs rename to _archive/dispatcher/cmd/dispatcher.rs diff --git a/src/dispatcher/docs/ARCHITECTURE.md b/_archive/dispatcher/docs/ARCHITECTURE.md similarity index 100% rename from src/dispatcher/docs/ARCHITECTURE.md rename to _archive/dispatcher/docs/ARCHITECTURE.md diff --git a/src/dispatcher/examples/timeout_example.rs b/_archive/dispatcher/examples/timeout_example.rs similarity index 100% rename from src/dispatcher/examples/timeout_example.rs rename to _archive/dispatcher/examples/timeout_example.rs diff --git a/src/dispatcher/src/lib.rs b/_archive/dispatcher/src/lib.rs similarity index 100% rename from src/dispatcher/src/lib.rs rename to _archive/dispatcher/src/lib.rs diff --git a/src/macros/Cargo.toml b/src/macros/Cargo.toml index e2d69ff..3dd0a46 100644 --- a/src/macros/Cargo.toml +++ b/src/macros/Cargo.toml @@ -5,6 +5,6 @@ edition = "2024" [dependencies] rhai = { version = "1.21.0", features = ["std", "sync", "decimal", "internals"] } -heromodels = { path = "../../../db/heromodels" } -heromodels_core = { path = "../../../db/heromodels_core" } +heromodels = { git = "https://git.ourworld.tf/herocode/db.git" } +heromodels_core = { git = "https://git.ourworld.tf/herocode/db.git" } serde = { version = "1.0", features = ["derive"] }