This repository was archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgo.mod
More file actions
42 lines (36 loc) · 1.29 KB
/
go.mod
File metadata and controls
42 lines (36 loc) · 1.29 KB
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
module github.com/harmony-development/legato
go 1.16
require github.com/apex/log v1.9.0
require (
github.com/fatih/color v1.12.0
github.com/gofiber/fiber/v2 v2.18.0
github.com/mattn/go-isatty v0.0.13 // indirect
google.golang.org/protobuf v1.27.1
)
require github.com/harmony-development/hrpc v0.0.0-20210907001704-79d3509faa2a
require (
github.com/jackc/pgconn v1.10.0
github.com/jackc/pgx/v4 v4.13.0
)
require (
github.com/fsnotify/fsnotify v1.5.1
github.com/go-redis/redis v6.15.9+incompatible // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/mattn/go-sqlite3 v1.14.8 // indirect
github.com/onsi/gomega v1.15.0 // indirect
github.com/philippgille/gokv v0.6.0
github.com/philippgille/gokv/bigcache v0.6.0
github.com/philippgille/gokv/encoding v0.6.0
github.com/philippgille/gokv/redis v0.6.0
github.com/philippgille/gokv/util v0.6.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sony/sonyflake v1.0.0
github.com/thanhpk/randstr v1.0.4
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
golang.org/x/net v0.0.0-20210825183410-e898025ed96a // indirect
golang.org/x/sys v0.0.0-20210903071746-97244b99971b // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.21.14
)