diff --git a/src/go.mod b/src/go.mod index 7396772..be534f8 100644 --- a/src/go.mod +++ b/src/go.mod @@ -1,42 +1,64 @@ module github.com/securitybunker/databunker/src -go 1.20 +go 1.21 + +toolchain go1.22.2 replace github.com/securitybunker/databunker/src/storage => ./storage require ( github.com/afocus/captcha v0.0.0-20191010092841-4bd1f21c8868 - github.com/evanphx/json-patch v5.7.0+incompatible + github.com/evanphx/json-patch v5.9.0+incompatible + github.com/gobuffalo/packr v1.30.1 + github.com/hashicorp/go-uuid v1.0.3 + github.com/julienschmidt/httprouter v1.3.0 + github.com/kelseyhightower/envconfig v1.4.0 + github.com/oschwald/geoip2-golang v1.9.0 + github.com/prometheus/client_golang v1.19.0 + github.com/qri-io/jsonpointer v0.1.1 + github.com/securitybunker/databunker/src/storage v0.0.0 + github.com/securitybunker/jsonschema v0.2.1-0.20201128224651-d77c1a3cb787 + github.com/tidwall/gjson v1.17.1 + github.com/ttacon/libphonenumber v1.2.1 + go.mongodb.org/mongo-driver v1.15.0 + golang.org/x/sys v0.20.0 + gopkg.in/yaml.v2 v2.4.0 +) + +require ( + filippo.io/edwards25519 v1.1.0 // indirect + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect + github.com/dustin/go-humanize v1.0.1 // indirect github.com/go-sql-driver/mysql v1.8.1 // indirect github.com/gobuffalo/envy v1.10.2 // indirect github.com/gobuffalo/packd v1.0.2 // indirect - github.com/gobuffalo/packr v1.30.1 github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect github.com/golang/protobuf v1.5.4 // indirect - github.com/hashicorp/go-uuid v1.0.3 + github.com/google/uuid v1.6.0 // indirect + github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect github.com/joho/godotenv v1.5.1 // indirect - github.com/julienschmidt/httprouter v1.3.0 - github.com/kelseyhightower/envconfig v1.4.0 github.com/lib/pq v1.10.9 // indirect - github.com/mattn/go-sqlite3 v1.14.22 // indirect - github.com/oschwald/geoip2-golang v1.9.0 + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/ncruces/go-strftime v0.1.9 // indirect github.com/oschwald/maxminddb-golang v1.12.0 // indirect - github.com/prometheus/client_golang v1.19.0 - github.com/prometheus/client_model v0.5.0 // indirect - github.com/prometheus/procfs v0.12.0 // indirect - github.com/qri-io/jsonpointer v0.1.1 + github.com/pkg/errors v0.9.1 // indirect + github.com/prometheus/client_model v0.6.1 // indirect + github.com/prometheus/common v0.53.0 // indirect + github.com/prometheus/procfs v0.14.0 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect github.com/rogpeppe/go-internal v1.12.0 // indirect - github.com/schollz/sqlite3dump v1.3.1 // indirect - github.com/securitybunker/databunker/src/storage v0.0.0 - github.com/securitybunker/jsonschema v0.2.1-0.20201128224651-d77c1a3cb787 - github.com/tidwall/gjson v1.17.0 + github.com/tidwall/match v1.1.1 // indirect github.com/tidwall/pretty v1.2.1 // indirect github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2 // indirect - github.com/ttacon/libphonenumber v1.2.1 - go.mongodb.org/mongo-driver v1.13.1 - golang.org/x/image v0.15.0 // indirect + golang.org/x/image v0.16.0 // indirect golang.org/x/mod v0.17.0 // indirect - golang.org/x/sys v0.19.0 - google.golang.org/protobuf v1.33.0 // indirect - gopkg.in/yaml.v2 v2.4.0 + google.golang.org/protobuf v1.34.1 // indirect + modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b // indirect + modernc.org/libc v1.50.5 // indirect + modernc.org/mathutil v1.6.0 // indirect + modernc.org/memory v1.8.0 // indirect + modernc.org/sqlite v1.29.9 // indirect + modernc.org/strutil v1.2.0 // indirect + modernc.org/token v1.1.0 // indirect ) diff --git a/version.txt b/version.txt index 100435b..b60d719 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.8.2 +0.8.4