2022-10-27 16:14:15 +02:00
|
|
|
module gogs.mikescher.com/BlackForestBytes/goext
|
2022-10-27 16:00:57 +02:00
|
|
|
|
|
|
|
go 1.19
|
2022-10-27 16:48:26 +02:00
|
|
|
|
|
|
|
require (
|
2023-06-19 10:12:40 +02:00
|
|
|
github.com/golang/snappy v0.0.4
|
|
|
|
github.com/google/go-cmp v0.5.9
|
2023-06-06 21:18:40 +02:00
|
|
|
github.com/jmoiron/sqlx v1.3.5
|
2023-06-19 10:12:40 +02:00
|
|
|
github.com/klauspost/compress v1.16.6
|
|
|
|
github.com/kr/pretty v0.1.0
|
|
|
|
github.com/montanaflynn/stats v0.7.1
|
|
|
|
github.com/pkg/errors v0.9.1
|
|
|
|
github.com/stretchr/testify v1.8.4
|
|
|
|
github.com/tidwall/pretty v1.0.0
|
|
|
|
github.com/xdg-go/scram v1.1.2
|
|
|
|
github.com/xdg-go/stringprep v1.0.4
|
|
|
|
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a
|
2023-06-07 16:58:17 +02:00
|
|
|
go.mongodb.org/mongo-driver v1.11.7
|
2023-06-18 01:16:52 +02:00
|
|
|
golang.org/x/crypto v0.10.0
|
2023-06-19 10:12:40 +02:00
|
|
|
golang.org/x/sync v0.3.0
|
2023-06-18 01:16:52 +02:00
|
|
|
golang.org/x/sys v0.9.0
|
|
|
|
golang.org/x/term v0.9.0
|
2022-10-27 16:48:26 +02:00
|
|
|
)
|
2022-12-07 23:21:36 +01:00
|
|
|
|
2022-12-23 10:11:01 +01:00
|
|
|
require (
|
2023-06-19 10:12:40 +02:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/kr/text v0.1.0 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2023-06-06 21:18:40 +02:00
|
|
|
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
2023-06-18 01:16:52 +02:00
|
|
|
golang.org/x/text v0.10.0 // indirect
|
2023-06-19 10:12:40 +02:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2022-12-23 10:11:01 +01:00
|
|
|
)
|