-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
119 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
module github.com/contribsys/sparq | ||
|
||
go 1.19 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/Masterminds/squirrel v1.5.3 | ||
github.com/go-redis/redis/v9 v9.0.0-rc.2 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/gorilla/sessions v1.2.1 | ||
github.com/jmoiron/sqlx v1.3.5 | ||
github.com/Masterminds/squirrel v1.5.4 | ||
github.com/gorilla/mux v1.8.1 | ||
github.com/gorilla/sessions v1.2.2 | ||
github.com/jmoiron/sqlx v1.4.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/pressly/goose/v3 v3.7.0 | ||
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa | ||
modernc.org/sqlite v1.20.2 | ||
github.com/pressly/goose/v3 v3.20.0 | ||
github.com/redis/go-redis/v9 v9.5.1 | ||
golang.org/x/crypto v0.22.0 | ||
modernc.org/sqlite v1.29.8 | ||
) | ||
|
||
require ( | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/go-redis/redis v6.15.7+incompatible // indirect | ||
github.com/gorilla/securecookie v1.1.1 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
github.com/gorilla/securecookie v1.1.2 // indirect | ||
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect | ||
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect | ||
golang.org/x/mod v0.7.0 // indirect | ||
golang.org/x/tools v0.5.0 // indirect | ||
github.com/mfridman/interpolate v0.0.2 // indirect | ||
github.com/ncruces/go-strftime v0.1.9 // indirect | ||
github.com/sethvargo/go-retry v0.2.4 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
lukechampine.com/uint128 v1.2.0 // indirect | ||
modernc.org/cc/v3 v3.40.0 // indirect | ||
modernc.org/ccgo/v3 v3.16.13 // indirect | ||
modernc.org/opt v0.1.3 // indirect | ||
modernc.org/strutil v1.1.3 // indirect | ||
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect | ||
modernc.org/strutil v1.2.0 // indirect | ||
modernc.org/token v1.1.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/contribsys/faktory v1.6.2 | ||
github.com/contribsys/faktory v1.8.0 | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/google/uuid v1.3.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/justinas/nosurf v1.1.1 | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20220927061507-ef77025ab5aa // indirect | ||
github.com/stretchr/testify v1.8.1 | ||
golang.org/x/sys v0.4.0 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/sys v0.19.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
modernc.org/libc v1.22.2 // indirect | ||
modernc.org/mathutil v1.5.0 // indirect | ||
modernc.org/memory v1.5.0 // indirect | ||
modernc.org/libc v1.50.4 // indirect | ||
modernc.org/mathutil v1.6.0 // indirect | ||
modernc.org/memory v1.8.0 // indirect | ||
) |
Oops, something went wrong.