summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorPhilipp Tanlak <philipp.tanlak@gmail.com>2024-11-24 23:16:31 +0100
committerPhilipp Tanlak <philipp.tanlak@gmail.com>2024-11-24 23:16:31 +0100
commit175cb0700b86134d3b04eab23d100dce2c3b6d56 (patch)
treea48b69aafeaf4a8690fba9b3d0bbe4ac9e64ecf3 /go.mod
parent653be4548b0883532665997a4624e56fdf7c02a6 (diff)
Change cache backend from sqlite to bbolt
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod25
1 files changed, 13 insertions, 12 deletions
diff --git a/go.mod b/go.mod
index 4a2048c..838ad5f 100644
--- a/go.mod
+++ b/go.mod
@@ -1,10 +1,12 @@
module github.com/philippta/flyscrape
-go 1.21
+go 1.23
+
+toolchain go1.23.3
require (
github.com/PuerkitoBio/goquery v1.8.1
- github.com/browserutils/kooky v0.2.1-0.20240119192416-d4f81abd0200
+ github.com/browserutils/kooky v0.2.2
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
@@ -12,11 +14,11 @@ require (
github.com/fsnotify/fsnotify v1.6.0
github.com/go-rod/rod v0.114.7
github.com/inancgumus/screen v0.0.0-20190314163918-06e984b86ed3
- github.com/mattn/go-sqlite3 v1.14.17
github.com/nlnwa/whatwg-url v0.4.0
github.com/stretchr/testify v1.8.4
github.com/tidwall/sjson v1.2.5
- golang.org/x/sync v0.5.0
+ go.etcd.io/bbolt v1.3.11
+ golang.org/x/sync v0.9.0
)
require (
@@ -25,7 +27,6 @@ require (
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
@@ -34,7 +35,7 @@ require (
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/keybase/go-keychain v0.0.0-20231219164618-57a3676c3af6 // 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
@@ -46,12 +47,12 @@ require (
github.com/ysmood/got v0.34.1 // indirect
github.com/ysmood/gson v0.7.3 // indirect
github.com/ysmood/leakless v0.8.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
+ github.com/zalando/go-keyring v0.2.5 // indirect
+ golang.org/x/crypto v0.29.0 // indirect
+ golang.org/x/net v0.31.0 // indirect
+ golang.org/x/sys v0.27.0 // indirect
+ golang.org/x/term v0.26.0 // indirect
+ golang.org/x/text v0.20.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
www.velocidex.com/golang/go-ese v0.2.0 // indirect
)