From a7c978efd4d39d14e22c56dd35a4d30035debcfb Mon Sep 17 00:00:00 2001 From: Timur Gordon <31495328+timurgordon@users.noreply.github.com> Date: Thu, 21 Aug 2025 14:35:07 +0200 Subject: [PATCH] use git paths for deps instead --- Cargo.lock | 3 +++ heromodels/Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 25036d8..13d982a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -771,6 +771,7 @@ dependencies = [ [[package]] name = "ourdb" version = "0.1.0" +source = "git+https://git.ourworld.tf/herocode/herolib_rust#aa0248ef17cb0117bb69f1d9f278f995bb417f16" dependencies = [ "crc32fast", "log", @@ -1096,6 +1097,7 @@ dependencies = [ [[package]] name = "rhailib-macros" version = "0.1.0" +source = "git+https://git.ourworld.tf/herocode/herolib_rust#aa0248ef17cb0117bb69f1d9f278f995bb417f16" dependencies = [ "rhai", "serde", @@ -1515,6 +1517,7 @@ dependencies = [ [[package]] name = "tst" version = "0.1.0" +source = "git+https://git.ourworld.tf/herocode/herolib_rust#aa0248ef17cb0117bb69f1d9f278f995bb417f16" dependencies = [ "ourdb", "thiserror", diff --git a/heromodels/Cargo.toml b/heromodels/Cargo.toml index ca2535f..7e3bdbc 100644 --- a/heromodels/Cargo.toml +++ b/heromodels/Cargo.toml @@ -10,11 +10,11 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" bincode = { version = "2", features = ["serde"] } chrono = { version = "0.4", features = ["serde"] } -ourdb = { path = "../../herolib_rust/packages/data/ourdb" } -tst = { path = "../../herolib_rust/packages/data/tst" } +ourdb = { git = "https://git.ourworld.tf/herocode/herolib_rust", package = "ourdb" } +tst = { git = "https://git.ourworld.tf/herocode/herolib_rust", package = "tst" } heromodels-derive = { path = "../heromodels-derive" } heromodels_core = { path = "../heromodels_core" } -rhailib-macros = { path = "../../herolib_rust/rhailib/src/macros" } +rhailib-macros = { git = "https://git.ourworld.tf/herocode/herolib_rust", package = "rhailib-macros" } rhai = { version = "1.21.0", features = [ "std", "sync",