-
Notifications
You must be signed in to change notification settings - Fork 64
/
go.mod
45 lines (42 loc) · 1.79 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
module webinars_practical_part
go 1.19
require (
github.com/ClickHouse/clickhouse-go v1.5.4
github.com/aerospike/aerospike-client-go v4.5.2+incompatible
github.com/go-redis/redis/v8 v8.11.5
github.com/go-sql-driver/mysql v1.7.1
github.com/golang/protobuf v1.5.3
github.com/kulti/titlecase v0.0.0-20200224064438-b92376e612e5
github.com/magiconair/properties v1.8.7
github.com/mailru/easyjson v0.7.7
github.com/stretchr/testify v1.5.1
github.com/valyala/fasthttp v1.50.0
github.com/vmihailenco/msgpack v4.0.4+incompatible
go.mongodb.org/mongo-driver v1.12.1
golang.org/x/exp v0.0.0-20240531132922-fd00a4e0eefc
google.golang.org/protobuf v1.31.0
)
require (
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/cloudflare/golz4 v0.0.0-20150217214814-ef862a3cdc58 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/klauspost/compress v1.16.3 // indirect
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.1.2 // indirect
github.com/xdg-go/stringprep v1.0.4 // indirect
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
github.com/yuin/gopher-lua v1.1.0 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.8.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)