-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
d7d874c
commit e973849
Showing
5 changed files
with
45 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,26 @@ | ||
module github.com/ltheinrich/gorum | ||
|
||
go 1.15 | ||
go 1.23.0 | ||
|
||
toolchain go1.23.5 | ||
|
||
require ( | ||
github.com/dchest/captcha v1.1.0 | ||
github.com/lib/pq v1.10.9 | ||
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 | ||
golang.org/x/crypto v0.33.0 | ||
golang.org/x/crypto v0.34.0 | ||
) | ||
|
||
require ( | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/yuin/goldmark v1.4.13 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sync v0.11.0 // indirect | ||
golang.org/x/sys v0.30.0 // indirect | ||
golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2 // indirect | ||
golang.org/x/term v0.29.0 // indirect | ||
golang.org/x/text v0.22.0 // indirect | ||
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect | ||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 // indirect | ||
) |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,18 +1,39 @@ | ||
# github.com/dchest/captcha v1.1.0 | ||
## explicit | ||
## explicit; go 1.18 | ||
github.com/dchest/captcha | ||
# github.com/google/go-cmp v0.6.0 | ||
## explicit; go 1.13 | ||
# github.com/lib/pq v1.10.9 | ||
## explicit | ||
## explicit; go 1.13 | ||
github.com/lib/pq | ||
github.com/lib/pq/oid | ||
github.com/lib/pq/scram | ||
# github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 | ||
## explicit | ||
github.com/nfnt/resize | ||
# golang.org/x/crypto v0.33.0 | ||
## explicit | ||
# github.com/yuin/goldmark v1.4.13 | ||
## explicit; go 1.18 | ||
# golang.org/x/crypto v0.34.0 | ||
## explicit; go 1.23.0 | ||
golang.org/x/crypto/bcrypt | ||
golang.org/x/crypto/blowfish | ||
golang.org/x/crypto/sha3 | ||
# golang.org/x/mod v0.17.0 | ||
## explicit; go 1.18 | ||
# golang.org/x/net v0.25.0 | ||
## explicit; go 1.18 | ||
# golang.org/x/sync v0.11.0 | ||
## explicit; go 1.18 | ||
# golang.org/x/sys v0.30.0 | ||
## explicit; go 1.18 | ||
golang.org/x/sys/cpu | ||
# golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2 | ||
## explicit; go 1.20 | ||
# golang.org/x/term v0.29.0 | ||
## explicit; go 1.18 | ||
# golang.org/x/text v0.22.0 | ||
## explicit; go 1.18 | ||
# golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d | ||
## explicit; go 1.19 | ||
# golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 | ||
## explicit; go 1.11 |