| author | |
| committer | |
| log | 4518a7c11345aca0116e2fc6247ab6412d92937a |
| tree | e82ddd13b86717bf066785a88a9e328200242409 |
| parent | 4c13de3183c369d6d1260e34cf32619c63526481 |
9 files changed, 0 insertions(+), 16 deletions(-)
src/cmd/aquila/showjson.zig-1| ... | ... | @@ -1,7 +1,6 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const gpa = std.heap.c_allocator; |
| 3 | 3 | |
| 4 | const u = @import("./../../util/index.zig"); | |
| 5 | 4 | const aq = @import("./../aq.zig"); |
| 6 | 5 | |
| 7 | 6 | // |
src/cmd/ci.zig-1| ... | ... | @@ -2,7 +2,6 @@ const std = @import("std"); |
| 2 | 2 | const string = []const u8; |
| 3 | 3 | |
| 4 | 4 | const zigmod = @import("../lib.zig"); |
| 5 | const u = @import("./../util/index.zig"); | |
| 6 | 5 | const common = @import("./../common.zig"); |
| 7 | 6 | |
| 8 | 7 | // Inspired by: |
src/cmd/license.zig-1| ... | ... | @@ -7,7 +7,6 @@ const zigmod = @import("../lib.zig"); |
| 7 | 7 | const u = @import("./../util/index.zig"); |
| 8 | 8 | const common = @import("./../common.zig"); |
| 9 | 9 | |
| 10 | const Module = zigmod.Module; | |
| 11 | 10 | const List = std.ArrayList(zigmod.Module); |
| 12 | 11 | const Map = std.StringArrayHashMap(*List); |
| 13 | 12 |
src/cmd/sum.zig-1| ... | ... | @@ -2,7 +2,6 @@ const std = @import("std"); |
| 2 | 2 | const gpa = std.heap.c_allocator; |
| 3 | 3 | |
| 4 | 4 | const zigmod = @import("../lib.zig"); |
| 5 | const u = @import("./../util/index.zig"); | |
| 6 | 5 | const common = @import("./../common.zig"); |
| 7 | 6 | |
| 8 | 7 | // |
src/cmd/zpm/search.zig-3| ... | ... | @@ -1,10 +1,7 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const gpa = std.heap.c_allocator; |
| 3 | const zfetch = @import("zfetch"); | |
| 4 | const json = @import("json"); | |
| 5 | 3 | const range = @import("range").range; |
| 6 | 4 | |
| 7 | const u = @import("./../../util/index.zig"); | |
| 8 | 5 | const zpm = @import("./../zpm.zig"); |
| 9 | 6 | |
| 10 | 7 | // |
src/cmd/zpm/showjson.zig-3| ... | ... | @@ -1,9 +1,6 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const gpa = std.heap.c_allocator; |
| 3 | const zfetch = @import("zfetch"); | |
| 4 | const json = @import("json"); | |
| 5 | 3 | |
| 6 | const u = @import("./../../util/index.zig"); | |
| 7 | 4 | const zpm = @import("./../zpm.zig"); |
| 8 | 5 | |
| 9 | 6 | // |
src/cmd/zpm/tags.zig-3| ... | ... | @@ -1,10 +1,7 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const gpa = std.heap.c_allocator; |
| 3 | const zfetch = @import("zfetch"); | |
| 4 | const json = @import("json"); | |
| 5 | 3 | const range = @import("range").range; |
| 6 | 4 | |
| 7 | const u = @import("./../../util/index.zig"); | |
| 8 | 5 | const zpm = @import("./../zpm.zig"); |
| 9 | 6 | |
| 10 | 7 | // |
src/common.zig-2| ... | ... | @@ -1,12 +1,10 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const string = []const u8; |
| 3 | const builtin = @import("builtin"); | |
| 4 | 3 | const ansi = @import("ansi"); |
| 5 | 4 | const root = @import("root"); |
| 6 | 5 | |
| 7 | 6 | const zigmod = @import("./lib.zig"); |
| 8 | 7 | const u = @import("./util/index.zig"); |
| 9 | const yaml = @import("./util/yaml.zig"); | |
| 10 | 8 | |
| 11 | 9 | const build_options = if (@hasDecl(root, "build_options")) root.build_options else struct {}; |
| 12 | 10 | const bootstrap = if (@hasDecl(build_options, "bootstrap")) build_options.bootstrap else false; |
src/util/yaml.zig-1| ... | ... | @@ -1,6 +1,5 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const string = []const u8; |
| 3 | const yaml = @import("yaml"); | |
| 4 | 3 | |
| 5 | 4 | const c = @cImport({ |
| 6 | 5 | @cInclude("yaml.h"); |