A SpaceTraders Agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update to latest zig@master -> fix testing.ref calls

Altagos b731767d 3613190b

+10 -12
+2 -2
build.zig.zon
··· 3 3 .version = "0.0.1", 4 4 .dependencies = .{ 5 5 .known_folders = .{ 6 - .url = "git+https://github.com/ziglibs/known-folders.git?ref=master#8465ba6cfc49fe941f95c75b3ae48c03aa6125b5", 7 - .hash = "known_folders-0.0.0-Fy-PJqrJAACSvJM3Ux3aJi3wu5hOUYBRvcTM-9NTelui", 6 + .url = "git+https://github.com/ziglibs/known-folders.git?ref=master#82027007c0eb199a3242c167a5cffd83b6ee571b", 7 + .hash = "known_folders-0.0.0-Fy-PJqHJAAB43zDJmOdlr3nViu69IFI9pNFt7hkHjKk4", 8 8 }, 9 9 }, 10 10 .minimum_zig_version = "0.16.0-dev.1246+4b593a6c2",
+4 -5
src/agent/root.zig
··· 1 1 pub const config = @import("config.zig"); 2 2 3 - // temporarily disabled - we don't have any test to run 4 - // test { 5 - // const testing = @import("std").testing; 6 - // testing.refAllDeclsRecursive(@This()); 7 - // } 3 + test { 4 + const testing = @import("std").testing; 5 + testing.refAllDecls(@This()); 6 + }
+4 -5
src/st/root.zig
··· 2 2 pub const http = @import("http.zig"); 3 3 pub const models = @import("models.zig"); 4 4 5 - // temporarily disabled - we don't have any test to run 6 - // test { 7 - // const testing = @import("std").testing; 8 - // testing.refAllDeclsRecursive(@This()); 9 - // } 5 + test { 6 + const testing = @import("std").testing; 7 + testing.refAllDecls(@This()); 8 + }