From b72ea11712990ab842d4c32742df15574e411a78 Mon Sep 17 00:00:00 2001 From: Aaron Kaiser Date: Thu, 23 Oct 2025 18:20:47 +0200 Subject: [PATCH] get shared_memory_heap from git repository --- Cargo.lock | 3 ++- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4edb066..78463c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "agent_lib" @@ -26,6 +26,7 @@ checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" [[package]] name = "shared_memory_heap" version = "0.1.0" +source = "git+https://gitea.rixxc.de/rixxc/shared_memory_heap.git#ef9bcc94fb04d7191514a249c78d608d2f7cb9a6" dependencies = [ "libc", ] diff --git a/Cargo.toml b/Cargo.toml index f17db80..f5ee67a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] anyhow = "1.0.82" libc = "0.2.153" -shared_memory_heap = { path = "../shared_memory_heap" } +shared_memory_heap = { git = "https://gitea.rixxc.de/rixxc/shared_memory_heap.git" }