-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgo.mod
More file actions
56 lines (53 loc) · 2.16 KB
/
go.mod
File metadata and controls
56 lines (53 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module github.com/gnames/gnparser
go 1.25.1
require (
github.com/dustin/go-humanize v1.0.1
github.com/gnames/gnfmt v0.6.4
github.com/gnames/gnlib v0.63.0
github.com/gnames/gnsys v0.4.3
github.com/gnames/gnuuid v0.2.0
github.com/gnames/organizer v0.1.1
github.com/gnames/tribool v0.1.1
github.com/labstack/echo/v4 v4.15.0
github.com/lmittmann/tint v1.1.2
github.com/pointlander/peg v1.0.1
github.com/rendon/testcli v1.0.0
github.com/spf13/cobra v1.10.2
github.com/stretchr/testify v1.11.1
golang.org/x/net v0.49.0
golang.org/x/perf v0.0.0-20260112171951-5abaabe9f1bd
golang.org/x/text v0.33.0
golang.org/x/tools v0.41.0
)
require (
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/aclements/go-moremath v0.0.0-20241023150245-c8bbc672ef66 // indirect
github.com/cheggaaa/pb/v3 v3.1.7 // indirect
github.com/clipperhouse/stringish v0.1.1 // indirect
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.18.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.19 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/pointlander/compress v1.1.1-0.20190518213731-ff44bd196cc3 // indirect
github.com/pointlander/jetset v1.0.1-0.20190518214125-eee7eff80bd4 // indirect
github.com/spf13/pflag v1.0.10 // indirect
github.com/ulikunitz/xz v0.5.15 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/crypto v0.47.0 // indirect
golang.org/x/mod v0.32.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.40.0 // indirect
golang.org/x/telemetry v0.0.0-20260109210033-bd525da824e2 // indirect
golang.org/x/time v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)