Commitb75a3e08Recorded1 Apr 2026Repositorysigil-lemonsqueezy
Migrate to 0.9.1 transitive deps with version ranges and lockfile
Message
Trim deps to direct-only (remove sigil-tls, sigil-crypto, sigil-log), replace tag pins with version ranges, generate lockfile, update README build instructions. sigil-crypto is provided via sigil-stdlib.
Changed
README.md | 13 +++----------
package.sgl | 11 +++--------
sigil.lock | 21 +++++++++++++++++++++
3 files changed, 27 insertions(+), 18 deletions(-)Diff
README.mdmodified
@@ -159,24 +159,17 @@ All list endpoints accept an options dict:
159
160
## Building 161
−162
Requires a C toolchain for native dependencies (sigil-crypto, sigil-tls).−163
162
```bash−165
# With local sigil checkout−166
sigil build --redirects dev-redirects.sgl−167
−168
# Run tests+163
sigil deps install+164
sigil build 165
sigil test 166
``` 167
168
## Dependencies 169
−174
- sigil-stdlib (core, dict, string, struct, json)+170
- sigil-stdlib (core, dict, string, struct, crypto) 171
- sigil-http (HTTP client)−176
- sigil-tls (HTTPS support) 172
- sigil-json (JSON parsing)−178
- sigil-crypto (HMAC-SHA256 for webhook verification)−179
- sigil-log (logging) 173
174
## API Coverage 175
package.sglmodified
@@ -3,8 +3,6 @@
3
;;; Provides functions for managing products, checkouts, orders, 4
;;; subscriptions, webhooks, and license keys via the Lemon Squeezy API. 5
−6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")−7
6
(package 7
name: "sigil-lemonsqueezy" 8
version: "0.1.0"@@ -26,12 +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-tls")−31
(from-git url: sigil-repo package: "sigil-http")−32
(from-git url: sigil-repo package: "sigil-json")−33
(from-git url: sigil-repo package: "sigil-crypto")−34
(from-git url: sigil-repo package: "sigil-log"))+27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")+28
(from-git url: "codeberg:sigil/sigil" package: "sigil-http" version: "^0.9.0")+29
(from-git url: "codeberg:sigil/sigil" package: "sigil-json" version: "^0.9.0")) 30
31
tasks: (list 32
(tasksigil.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-http"+10
url: "codeberg:sigil/sigil"+11
ref: "^0.9.0"+12
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"+13
package-selector: "sigil-http"+14
version: "0.9.1")+15
(package name: "sigil-json"+16
url: "codeberg:sigil/sigil"+17
ref: "^0.9.0"+18
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"+19
package-selector: "sigil-json"+20
version: "0.9.1")+21
)