diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2024-02-21 21:39:37 +0100 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2024-02-21 21:39:37 +0100 |
| commit | e2e0ed8fa7d26a23f77b378907b3f902be9e028e (patch) | |
| tree | f47717a3db0aba9e74cb67ce7ef4137f3d1da2d7 /go.mod | |
| parent | c796f4164c13e30135246c08304acd7142673f60 (diff) | |
Use the cookie store from local browser
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 22 |
1 files changed, 17 insertions, 5 deletions
@@ -4,6 +4,7 @@ go 1.21 require ( github.com/PuerkitoBio/goquery v1.8.1 + github.com/browserutils/kooky v0.2.1-0.20240119192416-d4f81abd0200 github.com/cornelk/hashmap v1.0.8 github.com/dop251/goja v0.0.0-20230919151941-fc55792775de github.com/dop251/goja_nodejs v0.0.0-20230914102007-198ba9a8b098 @@ -18,22 +19,33 @@ require ( ) require ( + github.com/Velocidex/json v0.0.0-20220224052537-92f3c0326e5a // indirect + github.com/Velocidex/ordereddict v0.0.0-20230909174157-2aa49cc5d11d // indirect + github.com/Velocidex/yaml/v2 v2.2.8 // indirect github.com/andybalholm/cascadia v1.3.1 // indirect github.com/bits-and-blooms/bitset v1.5.0 // indirect + github.com/bobesa/go-domain-util v0.0.0-20190911083921-4033b5f7dd89 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/dlclark/regexp2 v1.7.0 // indirect + github.com/go-ini/ini v1.67.0 // indirect github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect + github.com/go-sqlite/sqlite3 v0.0.0-20180313105335-53dd8e640ee7 // indirect + github.com/godbus/dbus/v5 v5.1.0 // indirect + github.com/gonuts/binary v0.2.0 // indirect github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect + github.com/keybase/go-keychain v0.0.0-20230523030712-b5615109f100 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rogpeppe/go-internal v1.10.0 // indirect github.com/tidwall/gjson v1.17.0 // indirect github.com/tidwall/match v1.1.1 // indirect github.com/tidwall/pretty v1.2.1 // indirect - golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect - golang.org/x/net v0.10.0 // indirect - golang.org/x/sys v0.8.0 // indirect - golang.org/x/term v0.8.0 // indirect - golang.org/x/text v0.9.0 // indirect + github.com/zalando/go-keyring v0.2.3 // indirect + golang.org/x/crypto v0.19.0 // indirect + golang.org/x/net v0.21.0 // indirect + golang.org/x/sys v0.17.0 // indirect + golang.org/x/term v0.17.0 // indirect + golang.org/x/text v0.14.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect + www.velocidex.com/golang/go-ese v0.2.0 // indirect ) |