-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
57 lines (54 loc) · 2.24 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
module github.com/getevo/evo/v2
go 1.19
require (
github.com/ajg/form v1.5.1
github.com/alecthomas/repr v0.2.0
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/awoodbeck/strftime v0.0.0-20180221155908-016cde65fcde
github.com/fatih/structs v1.1.0
github.com/go-redis/redis/v8 v8.11.5
github.com/gofiber/fiber/v2 v2.42.0
github.com/gofiber/utils/v2 v2.0.0-beta.1
github.com/iancoleman/strcase v0.2.0
github.com/kelindar/binary v1.0.17
github.com/otiai10/copy v1.9.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/segmentio/kafka-go v0.4.39
github.com/tidwall/gjson v1.7.4
github.com/valyala/fasthttp v1.44.0
golang.org/x/text v0.7.0
gopkg.in/yaml.v3 v3.0.1
gorm.io/driver/mysql v1.4.7
gorm.io/driver/sqlite v1.4.4
gorm.io/driver/sqlserver v1.4.2
gorm.io/gorm v1.24.6
)
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/go-sql-driver/mysql v1.7.0 // indirect
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/klauspost/compress v1.16.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-sqlite3 v1.14.15 // indirect
github.com/microsoft/go-mssqldb v0.19.0 // indirect
github.com/philhofer/fwd v1.1.1 // indirect
github.com/pierrec/lz4/v4 v4.1.15 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/savsgio/dictpool v0.0.0-20221023140959-7bf2e61cea94 // indirect
github.com/savsgio/gotils v0.0.0-20220530130905-52f3993e8d6d // indirect
github.com/tidwall/match v1.0.3 // indirect
github.com/tidwall/pretty v1.1.0 // indirect
github.com/tinylib/msgp v1.1.6 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20221005025214-4161e89ecf1b // indirect
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
)