-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
33 lines (33 loc) · 1.42 KB
/
build.zig.zon
File metadata and controls
33 lines (33 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.{
.name = .cljw,
.version = "1.0.0-alpha.1",
.fingerprint = 0x1869d207073beffa,
.minimum_zig_version = "0.16.0",
.dependencies = .{
.zlinter = .{
.url = "git+https://github.com/kurtwagner/zlinter?ref=0.16.x#9b4d67b9725e7137ac876cc628fe5dd2ca5a2681",
.hash = "zlinter-0.0.1-OjQ08c7oCwDIwhlde7eDKMACNTsqAhGXy5vB7GdfGobG",
},
// zwasm v2 embedding API (F-001 / D-037). `lazy` so the DEFAULT build +
// gate never resolve it — only `-Dwasm` / `-Dzwasm-spike` (b.lazyDependency) do.
// TAG-PIN mode (user 2026-06-10, F-001 Revision history): cljw consumes the
// `v2.0.0-alpha.2` dogfood tag from clojurewasm/zwasm, cryptographically pinned
// by `.hash` so it cannot drift even as the branch moves on. Switch to
// `.path = "../zwasm_from_scratch"` for relative-path co-development when
// hardening both repos in lockstep (a routine path<->url edit, not an F-001
// amendment). lazy + flag-guard means an unresolved/churning dep cannot break
// cljw's default gate.
.zwasm = .{
.url = "git+https://github.com/clojurewasm/zwasm.git#v2.0.0-alpha.2",
.hash = "zwasm-0.0.0-pre-FT1Fv20VeAC0RC_8d4gGeHDT8xQbyU2_DJd-uYXg51vf",
.lazy = true,
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"LICENSE",
"README.md",
},
}