universal-lambda-zig/build.zig.zon

36 lines
1.0 KiB
Plaintext

.{
.name = "univeral-lambda-zig",
.version = "0.5.0",
.dependencies = .{
.flexilib = .{
.path = "../flexilib",
},
.@"lambda-zig" = .{
.path = "../lambda-zig",
},
.@"cloudflare-worker-deploy" = .{
.path = "../cloudflare-worker-deploy",
},
},
// 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",
},
}