Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
server
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Netrino
server
Commits
70607db8
Commit
70607db8
authored
Feb 14, 2022
by
Jake Taylor
Browse files
Options
Downloads
Patches
Plain Diff
update go mod ver
parent
f408f3cb
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
go.mod
+36
-11
36 additions, 11 deletions
go.mod
with
36 additions
and
11 deletions
go.mod
+
36
−
11
View file @
70607db8
module
gitlab.com/elixxir/server
module
gitlab.com/elixxir/server
go 1.1
3
go 1.1
7
require (
require (
github.com/InfiniteLoopSpace/go_S-MIME
v0.0.0-20181221134359-3f58f9a4b2b6
github.com/InfiniteLoopSpace/go_S-MIME
v0.0.0-20181221134359-3f58f9a4b2b6
github.com/cznic/mathutil
v0.0.0-20181122101859-297441e03548
github.com/cznic/mathutil
v0.0.0-20181122101859-297441e03548
github.com/golang/protobuf
v1.5.2
github.com/golang/protobuf
v1.5.2
github.com/gopherjs/gopherjs
v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/jinzhu/copier
v0.0.0-20201025035756-632e723a6687
github.com/jinzhu/copier
v0.0.0-20201025035756-632e723a6687
github.com/magiconair/properties
v1.8.4 // indirect
github.com/mitchellh/mapstructure
v1.4.0 // indirect
github.com/pelletier/go-toml
v1.8.1 // indirect
github.com/pkg/errors
v0.9.1
github.com/pkg/errors
v0.9.1
github.com/remyoudompheng/bigfft
v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/smartystreets/assertions
v1.2.0 // indirect
github.com/spf13/afero
v1.5.1 // indirect
github.com/spf13/cast
v1.3.1 // indirect
github.com/spf13/cobra
v1.1.1
github.com/spf13/cobra
v1.1.1
github.com/spf13/jwalterweatherman
v1.1.0
github.com/spf13/jwalterweatherman
v1.1.0
github.com/spf13/viper
v1.7.1
github.com/spf13/viper
v1.7.1
...
@@ -27,11 +19,44 @@ require (
...
@@ -27,11 +19,44 @@ require (
gitlab.com/xx_network/crypto
v0.0.5-0.20211227194420-f311e8920467
gitlab.com/xx_network/crypto
v0.0.5-0.20211227194420-f311e8920467
gitlab.com/xx_network/primitives
v0.0.4-0.20211222205802-03e9d7d835b0
gitlab.com/xx_network/primitives
v0.0.4-0.20211222205802-03e9d7d835b0
golang.org/x/crypto
v0.0.0-20210921155107-089bfa567519
golang.org/x/crypto
v0.0.0-20210921155107-089bfa567519
google.golang.org/genproto
v0.0.0-20210105202744-fe13368bc0e1 // indirect
google.golang.org/grpc
v1.38.0
google.golang.org/grpc
v1.38.0
google.golang.org/protobuf
v1.27.1
google.golang.org/protobuf
v1.27.1
gopkg.in/ini.v1
v1.62.0 // indirect
gopkg.in/yaml.v2
v2.4.0
gopkg.in/yaml.v2
v2.4.0
gorm.io/driver/postgres
v1.1.2
gorm.io/driver/postgres
v1.1.2
gorm.io/gorm
v1.21.16
gorm.io/gorm
v1.21.16
)
)
require (
github.com/elliotchance/orderedmap
v1.4.0 // indirect
github.com/fsnotify/fsnotify
v1.4.9 // indirect
github.com/golang-collections/collections
v0.0.0-20130729185459-604e922904d3 // indirect
github.com/gopherjs/gopherjs
v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/hashicorp/hcl
v1.0.0 // indirect
github.com/inconshreveable/mousetrap
v1.0.0 // indirect
github.com/jackc/chunkreader/v2
v2.0.1 // indirect
github.com/jackc/pgconn
v1.10.0 // indirect
github.com/jackc/pgio
v1.0.0 // indirect
github.com/jackc/pgpassfile
v1.0.0 // indirect
github.com/jackc/pgproto3/v2
v2.1.1 // indirect
github.com/jackc/pgservicefile
v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype
v1.8.1 // indirect
github.com/jackc/pgx/v4
v4.13.0 // indirect
github.com/jinzhu/inflection
v1.0.0 // indirect
github.com/jinzhu/now
v1.1.2 // indirect
github.com/magiconair/properties
v1.8.4 // indirect
github.com/mitchellh/go-homedir
v1.1.0 // indirect
github.com/mitchellh/mapstructure
v1.4.0 // indirect
github.com/pelletier/go-toml
v1.8.1 // indirect
github.com/remyoudompheng/bigfft
v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/smartystreets/assertions
v1.2.0 // indirect
github.com/spf13/afero
v1.5.1 // indirect
github.com/spf13/cast
v1.3.1 // indirect
github.com/spf13/pflag
v1.0.5 // indirect
github.com/subosito/gotenv
v1.2.0 // indirect
gitlab.com/xx_network/ring
v0.0.3-0.20210527191221-ce3f170aabd5 // indirect
golang.org/x/net
v0.0.0-20210525063256-abc453219eb5 // indirect
golang.org/x/sys
v0.0.0-20210615035016-665e8c7367d1 // indirect
golang.org/x/text
v0.3.7 // indirect
google.golang.org/genproto
v0.0.0-20210105202744-fe13368bc0e1 // indirect
gopkg.in/ini.v1
v1.62.0 // indirect
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment