-
Notifications
You must be signed in to change notification settings - Fork 10
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
Brandon Berhent
committed
Aug 23, 2022
1 parent
f0d60df
commit d873208
Showing
6 changed files
with
217 additions
and
314 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
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,29 +1,47 @@ | ||
module github.com/appditto/natricon/server | ||
|
||
go 1.14 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/ajstarks/svgo v0.0.0-20200320125537-f189e35d30ca | ||
github.com/bbedward/crypto/ed25519 v0.0.0-20200408160247-f3ed4859f246 // indirect | ||
github.com/bbedward/nano v0.0.0-20200408160834-45efd709c9fa | ||
github.com/bsm/redislock v0.5.0 | ||
github.com/gin-gonic/gin v1.6.3 | ||
github.com/go-playground/validator/v10 v10.3.0 // indirect | ||
github.com/go-redis/redis/v7 v7.3.0 | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/golang/protobuf v1.4.2 // indirect | ||
github.com/google/uuid v1.1.1 | ||
github.com/googollee/go-socket.io v1.4.3 | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
github.com/jasonlvhit/gocron v0.0.0-20200423141508-ab84337f7963 | ||
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b | ||
github.com/bbedward/nano v0.0.0-20200816190148-07c73bdcaff6 | ||
github.com/bsm/redislock v0.8.0 | ||
github.com/gin-gonic/gin v1.8.1 | ||
github.com/go-redis/redis/v9 v9.0.0-beta.2 | ||
github.com/golang/glog v1.0.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/googollee/go-socket.io v1.6.2 | ||
github.com/jasonlvhit/gocron v0.0.1 | ||
github.com/recws-org/recws v1.4.0 | ||
github.com/tdewolff/minify/v2 v2.12.0 | ||
gopkg.in/gographics/imagick.v3 v3.4.1 | ||
) | ||
|
||
require ( | ||
github.com/bbedward/crypto/ed25519 v0.0.0-20220804193241-34e811d3dfe5 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/go-playground/locales v0.14.0 // indirect | ||
github.com/go-playground/universal-translator v0.18.0 // indirect | ||
github.com/go-playground/validator/v10 v10.11.0 // indirect | ||
github.com/goccy/go-json v0.9.11 // indirect | ||
github.com/gofrs/uuid v4.2.0+incompatible // indirect | ||
github.com/gomodule/redigo v2.0.0+incompatible // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/jpillora/backoff v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/recws-org/recws v1.2.1 | ||
github.com/tdewolff/minify/v2 v2.7.4 | ||
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 // indirect | ||
golang.org/x/sys v0.0.0-20200523222454-059865788121 // indirect | ||
google.golang.org/protobuf v1.24.0 // indirect | ||
gopkg.in/gographics/imagick.v3 v3.3.0 | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.3 // indirect | ||
github.com/tdewolff/parse/v2 v2.6.2 // indirect | ||
github.com/ugorji/go/codec v1.2.7 // indirect | ||
golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8 // indirect | ||
golang.org/x/net v0.0.0-20220822230855-b0a4917ee28c // indirect | ||
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.