chore: Refactor and update dependencies in go.mod file

- Refactor and optimize parsing function in browsingdata extension
- Update dependency versions and indirect versions in go.mod
This commit is contained in:
moonD4rk
2024-01-09 18:05:08 +08:00
committed by ᴍᴏᴏɴD4ʀᴋ
parent 23daf093b8
commit baac121610
3 changed files with 53 additions and 64 deletions
+16 -15
View File
@@ -3,35 +3,36 @@ module github.com/moond4rk/hackbrowserdata
go 1.21
require (
github.com/gocarina/gocsv v0.0.0-20230616125104-99d496ca653d
github.com/gocarina/gocsv v0.0.0-20231116093920-b87c2d0e983a
github.com/godbus/dbus/v5 v5.1.0
github.com/gookit/slog v0.4.0
github.com/mattn/go-sqlite3 v1.14.16
github.com/otiai10/copy v1.9.0
github.com/gookit/slog v0.5.4
github.com/mattn/go-sqlite3 v1.14.19
github.com/otiai10/copy v1.14.0
github.com/ppacher/go-dbus-keyring v1.0.1
github.com/stretchr/testify v1.8.2
github.com/stretchr/testify v1.8.4
github.com/syndtr/goleveldb v1.0.0
github.com/tidwall/gjson v1.14.4
github.com/urfave/cli/v2 v2.25.0
golang.org/x/crypto v0.7.0
golang.org/x/exp v0.0.0-20230310171629-522b1b587ee0
golang.org/x/text v0.8.0
github.com/tidwall/gjson v1.17.0
github.com/urfave/cli/v2 v2.27.1
golang.org/x/crypto v0.18.0
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc
golang.org/x/text v0.14.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/gookit/color v1.5.2 // indirect
github.com/gookit/goutil v0.6.1 // indirect
github.com/gookit/gsr v0.0.8 // indirect
github.com/gookit/color v1.5.4 // indirect
github.com/gookit/goutil v0.6.12 // indirect
github.com/gookit/gsr v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.16.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)