2020-06-19 12:43:31 +00:00
|
|
|
module hack-browser-data
|
|
|
|
|
2022-04-01 07:00:56 +00:00
|
|
|
go 1.18
|
2020-06-19 12:43:31 +00:00
|
|
|
|
|
|
|
require (
|
2021-12-31 08:50:50 +00:00
|
|
|
github.com/gocarina/gocsv v0.0.0-20211203214250-4735fba0c1d9
|
2022-04-13 07:49:15 +00:00
|
|
|
github.com/godbus/dbus v4.1.0+incompatible
|
2021-12-31 08:50:50 +00:00
|
|
|
github.com/json-iterator/go v1.1.12
|
2021-12-13 13:58:25 +00:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.9
|
2022-04-13 07:49:15 +00:00
|
|
|
github.com/ppacher/go-dbus-keyring v1.0.1
|
2021-11-25 02:25:07 +00:00
|
|
|
github.com/tidwall/gjson v1.9.3
|
2022-04-12 10:23:39 +00:00
|
|
|
github.com/urfave/cli/v2 v2.4.0
|
2022-04-08 11:06:04 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3
|
2020-06-19 12:43:31 +00:00
|
|
|
)
|
2022-04-01 07:00:56 +00:00
|
|
|
|
|
|
|
require (
|
2022-04-12 10:23:39 +00:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
|
2022-04-13 07:49:15 +00:00
|
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
2022-04-08 11:06:04 +00:00
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
2022-04-01 07:00:56 +00:00
|
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
2022-04-12 10:23:39 +00:00
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2022-04-12 05:48:28 +00:00
|
|
|
github.com/stretchr/testify v1.7.0 // indirect
|
2022-04-01 07:00:56 +00:00
|
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
2022-04-12 05:48:28 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
2022-04-01 07:00:56 +00:00
|
|
|
)
|