-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
63 lines (58 loc) · 2.37 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
51
52
53
54
55
56
57
58
59
60
61
62
63
module github.com/harmony-development/legato
go 1.18
require (
github.com/go-playground/validator/v10 v10.10.1
github.com/go-redis/redis/v8 v8.11.4
github.com/gofiber/fiber/v2 v2.29.0
github.com/harmony-development/hrpc v0.0.0-20220310113902-45ed547a6907
github.com/jackc/pgx/v4 v4.15.0
github.com/joho/godotenv v1.4.0
google.golang.org/protobuf v1.27.1
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/google/subcommands v1.2.0
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/samber/lo v1.8.0
github.com/thanhpk/randstr v1.0.4
)
require (
github.com/Microsoft/go-winio v0.5.1 // indirect
github.com/lib/pq v1.10.4 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
golang.org/x/exp v0.0.0-20220309201404-e19e41d68951 // indirect
gopkg.in/typ.v2 v2.0.0 // indirect
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/fasthttp/websocket v1.5.0 // indirect
github.com/go-playground/locales v0.14.0
github.com/go-playground/universal-translator v0.18.0
github.com/gofiber/websocket/v2 v2.0.18
github.com/golang-migrate/migrate/v4 v4.15.1
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.11.0
github.com/jackc/pgerrcode v0.0.0-20201024163028-a0d42d470451 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.2.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.10.0 // indirect
github.com/jackc/puddle v1.2.1 // indirect
github.com/klauspost/compress v1.15.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/matthewhartstonge/argon2 v0.2.1
github.com/savsgio/gotils v0.0.0-20220201163454-d252f0a44d5b // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.34.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
github.com/xissy/lexorank v0.0.1
go.uber.org/atomic v1.9.0 // indirect
golang.org/x/crypto v0.0.0-20220307211146-efcb8507fb70 // indirect
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
golang.org/x/text v0.3.7 // indirect
)