-
Notifications
You must be signed in to change notification settings - Fork 25
/
go.mod
58 lines (54 loc) · 2.31 KB
/
go.mod
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
57
58
module github.com/Zxilly/go-size-analyzer
go 1.23
toolchain go1.23.2
require (
github.com/ZxillyFork/gore v0.0.0-20241020200655-c872ce91719b
github.com/ZxillyFork/gosym v0.0.0-20240510024817-deed2b882525
github.com/ZxillyFork/trie v0.0.0-20240512061834-f75150731646
github.com/alecthomas/kong v1.6.0
github.com/blacktop/go-macho v1.1.234
github.com/charmbracelet/bubbles v0.20.0
github.com/charmbracelet/bubbletea v1.2.4
github.com/charmbracelet/lipgloss v1.0.0
github.com/charmbracelet/x/exp/teatest v0.0.0-20240812190614-74518029592c
github.com/charmbracelet/x/term v0.2.1
github.com/dustin/go-humanize v1.0.1
github.com/go-delve/delve v1.24.0
github.com/go-json-experiment/json v0.0.0-20240815175050-ebd3a8989ca1
github.com/jedib0t/go-pretty/v6 v6.6.5
github.com/knadh/profiler v0.2.0
github.com/muesli/reflow v0.3.0
github.com/muesli/termenv v0.15.2
github.com/nikolaydubina/treemap v1.2.5
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/samber/lo v1.47.0
github.com/stretchr/testify v1.10.0
golang.org/x/arch v0.13.0
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
golang.org/x/net v0.33.0
golang.org/x/sync v0.10.0
)
require (
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/aymanbagabas/go-udiff v0.2.0 // indirect
github.com/blacktop/go-dwarf v1.0.10 // indirect
github.com/charmbracelet/x/ansi v0.4.5 // indirect
github.com/charmbracelet/x/exp/golden v0.0.0-20240815200342-61de596daa2b // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-localereader v0.0.1 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)