Use published dependency pins

This commit is contained in:
torlando-agent[bot]
2026-08-15 01:32:56 +00:00
parent 1238fa7c2a
commit 2a23a14d1e
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -57,8 +57,8 @@ lib_deps =
; as this VCS pin.
; 2762f76 closes long-lived segment/index handles before compaction unlinks
; their LittleFS files, then reopens the append handles for subsequent puts.
; Local-only pin until the dependency commit is published; do not push this URL.
git+file:///home/tyler/repos/microstore-compaction-fix#2762f7606800ffb23f4a593947d4f58e259cda7a
; Immutable published pin for the physically validated compaction fix.
https://github.com/torlando-tech/microStore.git#2762f7606800ffb23f4a593947d4f58e259cda7a
; Explicit git dep so PIO links exactly ONE microReticulum (the
; live source). lib_extra_dirs was creating duplicate compilations
; — PIO compiled deps/microReticulum/ as one library AND auto-
@@ -102,8 +102,8 @@ lib_deps =
; including Resource advertisements and streaming bzip2 decompression.
; 572b570: bounds the persistent/enumerable path and active/held announce
; tables so the explicit 1 MiB RNS container pool cannot grow without limit.
; Local-only pin until the dependency commit is published; do not push this URL.
git+file:///home/tyler/repos/microreticulum-bounded-tables#572b5706f442be134f5a9c35a41e6368441b8fc1
; Immutable published pin for bounded transport tables.
https://github.com/torlando-tech/microReticulum.git#572b5706f442be134f5a9c35a41e6368441b8fc1
; microLXMF: chore/microreticulum-0.4.1-layout — includes namespaced to
; <microReticulum/...> for the 0.4.x src/microReticulum/ layout.
; 3cdde79: faster load_message_metadata — single LittleFS open (read_file
@@ -2,8 +2,8 @@ from pathlib import Path
ROOT = Path(__file__).resolve().parents[2]
MICROSTORE_PIN = "git+file:///home/tyler/repos/microstore-compaction-fix#2762f7606800ffb23f4a593947d4f58e259cda7a"
MICRORETICULUM_PIN = "git+file:///home/tyler/repos/microreticulum-bounded-tables#572b5706f442be134f5a9c35a41e6368441b8fc1"
MICROSTORE_PIN = "https://github.com/torlando-tech/microStore.git#2762f7606800ffb23f4a593947d4f58e259cda7a"
MICRORETICULUM_PIN = "https://github.com/torlando-tech/microReticulum.git#572b5706f442be134f5a9c35a41e6368441b8fc1"
MAX_RNS_PSRAM_POOL_BYTES = 1024 * 1024