20 lines
914 B
Plaintext
20 lines
914 B
Plaintext
.{
|
|
.name = .protocol_denied_test,
|
|
.version = "0.0.0",
|
|
.fingerprint = 0xab37a6fa7116698f, // Changing this has security and trust implications.
|
|
.minimum_zig_version = "0.16.0",
|
|
.dependencies = .{
|
|
// build-support supplies the shared recipe; kernel is implicit in
|
|
// every binary (the root shim + link script live there). The rest
|
|
// are exactly the homes of this binary's declared imports.
|
|
.@"build-support" = .{ .path = "../../../../build-support" },
|
|
.kernel = .{ .path = "../../../../library/kernel" },
|
|
// envelope: the errno the registrar answers a refused open with;
|
|
// vfs-protocol: the request and reply this fixture compares byte for
|
|
// byte, which is why it speaks the wire itself instead of using the
|
|
// Channel client.
|
|
.protocol = .{ .path = "../../../../library/protocol" },
|
|
},
|
|
.paths = .{""},
|
|
}
|