forked from digitalysin/goblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
50 lines (47 loc) · 2.09 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module github.com/digitalysin/goblog
go 1.17
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/allegro/bigcache/v3 v3.0.2
github.com/digitalysin/go-telnet v0.0.2
github.com/etix/stoppableListener v0.0.0-20131017134521-0346fe88acd7 // indirect
github.com/go-redis/redis/v8 v8.11.5
github.com/gojek/heimdall/v7 v7.0.2
github.com/gojek/valkyrie v0.0.0-20190210220504-8f62c1e7ba45 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/jlaffaye/ftp v0.0.0-20220524001917-dfa1e758f3af
github.com/joho/godotenv v1.4.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/klauspost/compress v1.12.2 // indirect
github.com/mtojek/localserver v0.0.0-20150924184226-6c20f5bb2792 // indirect
github.com/nats-io/nats-server/v2 v2.3.2 // indirect
github.com/nats-io/nats.go v1.16.0
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.7.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
gorm.io/driver/mysql v1.3.4
gorm.io/driver/sqlserver v1.3.2
gorm.io/gorm v1.23.5
)
require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/denisenkom/go-mssqldb v0.12.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect
github.com/golang-sql/sqlexp v0.0.0-20170517235910-f1bb20e5a188 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.4 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.3.0 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
)