Commit32d6153eRecorded1 Apr 2026Repositorysigil-websocket

Migrate to 0.9.1 transitive deps with version ranges and lockfile

Message

Replace tag-pinned dependency URLs with version ranges (^0.9.0), generate sigil.lock for reproducible builds, and update README to show sigil deps install in the standard build workflow.

Changed
 README.md   |  3 ++-
 package.sgl | 10 ++++------
 sigil.lock  | 21 +++++++++++++++++++++
 3 files changed, 27 insertions(+), 7 deletions(-)
Diff
README.mdmodified
@@ -53,7 +53,8 @@ Then connect and exchange messages:
53
## Building
54
55
```bash
56
sigil build --redirects dev-redirects.sgl
+56
sigil deps install
+57
sigil build
58
sigil test
59
```
60
package.sglmodified
@@ -3,11 +3,9 @@
3
;;; Provides WebSocket client functionality for real-time bidirectional
4
;;; communication. Supports both ws:// and wss:// (TLS) connections.
5
6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")
7
6
(package
7
name: "sigil-websocket"
10
version: "0.7.0"
+8
version: "0.9.1"
9
description: "WebSocket client library with TLS support"
10
url: "https://codeberg.org/sigil/sigil-websocket"
11
license: "BSD-3-Clause"
@@ -26,9 +24,9 @@
24
optimize: 2))
25
26
dependencies: (list
29
(from-git url: sigil-repo package: "sigil-stdlib")
30
(from-git url: sigil-repo package: "sigil-socket")
31
(from-git url: sigil-repo package: "sigil-crypto"))
+27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")
+28
(from-git url: "codeberg:sigil/sigil" package: "sigil-socket" version: "^0.9.0")
+29
(from-git url: "codeberg:sigil/sigil" package: "sigil-crypto" version: "^0.9.0"))
30
31
tasks: (list
32
(task
sigil.lockadded
@@ -0,0 +1,21 @@
+1
;; Auto-generated by sigil deps install. Do not edit.
+2
(lock
+3
(package name: "sigil-stdlib"
+4
url: "codeberg:sigil/sigil"
+5
ref: "^0.9.0"
+6
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+7
package-selector: "sigil-stdlib"
+8
version: "0.9.1")
+9
(package name: "sigil-socket"
+10
url: "codeberg:sigil/sigil"
+11
ref: "^0.9.0"
+12
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+13
package-selector: "sigil-socket"
+14
version: "0.9.1")
+15
(package name: "sigil-crypto"
+16
url: "codeberg:sigil/sigil"
+17
ref: "^0.9.0"
+18
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+19
package-selector: "sigil-crypto"
+20
version: "0.9.1")
+21
)