Skip to content

Commit

Permalink
fix build for master, ziglang/zig#21817
Browse files Browse the repository at this point in the history
  • Loading branch information
jiacai2050 committed Nov 18, 2024
1 parent 5fcead9 commit c7c38c6
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
4 changes: 1 addition & 3 deletions docs/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@ module github.com/jiacai2050/zigcli/docs

go 1.21

require (
github.com/google/docsy v0.10.0 // indirect
)
require github.com/google/docsy v0.11.0 // indirect
3 changes: 3 additions & 0 deletions docs/go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
github.com/FortAwesome/Font-Awesome v0.0.0-20240402185447-c0f460dca7f7/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/FortAwesome/Font-Awesome v0.0.0-20240716171331-37eff7fa00de/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/google/docsy v0.10.0 h1:6tMDacPwAyRWNCfvsn/9qGOZDQ8b0aRzjRZvnZPY5dg=
github.com/google/docsy v0.10.0/go.mod h1:c0nIAqmRTOuJ01F85U/wJPQtc3Zj9N58Kea9bOT2AJc=
github.com/google/docsy v0.11.0 h1:QnV40cc28QwS++kP9qINtrIv4hlASruhC/K3FqkHAmM=
github.com/google/docsy v0.11.0/go.mod h1:hGGW0OjNuG5ZbH5JRtALY3yvN8ybbEP/v2iaK4bwOUI=
github.com/twbs/bootstrap v5.3.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
2 changes: 1 addition & 1 deletion examples/simargs-demo.zig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const std = @import("std");
const simargs = @import("simargs");

pub const std_options = .{
pub const std_options: std.Options = .{
.log_level = .info,
};

Expand Down
2 changes: 1 addition & 1 deletion src/bin/loc.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const util = @import("util.zig");
const StringUtil = util.StringUtil;
const fs = std.fs;

pub const std_options = .{
pub const std_options: std.Options = .{
.log_level = .info,
};

Expand Down
2 changes: 1 addition & 1 deletion src/bin/tcp-proxy.zig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const debugPrint = util.debugPrint;
const net = std.net;
const mem = std.mem;

pub const std_options = .{
pub const std_options: std.Options = .{
.log_level = .debug,
};

Expand Down
2 changes: 1 addition & 1 deletion src/bin/tree.zig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const mem = std.mem;
const testing = std.testing;
const fmt = std.fmt;

pub const std_options = .{
pub const std_options: std.Options = .{
.log_level = .info,
};

Expand Down

0 comments on commit c7c38c6

Please sign in to comment.