universal-lambda-zig/build.zig.zon
Emil Lerch 5cad3926d8
Some checks failed
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Failing after 1m11s
zig 0.12.0: make all dependencies globally accessible
2024-05-10 13:36:27 -07:00

39 lines
1.5 KiB
Plaintext

.{
.name = "univeral-lambda-zig",
.version = "0.5.0",
.dependencies = .{
.flexilib = .{
.url = "https://git.lerch.org/lobo/FlexiLib/archive/48c0e893da20c9821f6fe55516861e08b9cb6c77.tar.gz",
.hash = "1220a4db25529543a82d199a17495aedd7766fef4f5d0122893566663721167b6168",
},
.@"lambda-zig" = .{
.url = "https://git.lerch.org/lobo/lambda-zig/archive/9d1108697282d24509472d7019c97d1afe06ba1c.tar.gz",
.hash = "12205b8a2be03b63a1b07bde373e8293c96be53a68a58054abe8689f80d691633862",
},
.@"cloudflare-worker-deploy" = .{
.url = "https://git.lerch.org/lobo/cloudflare-worker-deploy/archive/0581221c11cf32dce48abc5b950d974e570afb0d.tar.gz",
.hash = "12204e7befb1691ac40c124fcb63edf3c792cae7b4b1974edc1da23a36ba6f089d02",
},
},
// This field is optional.
// This is currently advisory only; Zig does not yet do anything
// with this value.
.minimum_zig_version = "0.12.0",
// Specifies the set of files and directories that are included in this package.
// Only files and directories listed here are included in the `hash` that
// is computed for this package.
// Paths are relative to the build root. Use the empty string (`""`) to refer to
// the build root itself.
// A directory listed here means that all files within, recursively, are included.
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"LICENSE",
"README.md",
},
}