-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
55 lines (52 loc) · 2.1 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
module github.com/talkincode/esmqtt
go 1.21
require (
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/bwmarrin/snowflake v0.3.0
github.com/c-robinson/iplib v1.0.7
github.com/cenkalti/backoff/v4 v4.2.1
github.com/coocood/freecache v1.2.4
github.com/eclipse/paho.mqtt.golang v1.4.3
github.com/elastic/go-elasticsearch/v8 v8.10.1
github.com/google/btree v1.1.2
github.com/guonaihong/gout v0.3.8
github.com/joho/godotenv v1.5.1
github.com/json-iterator/go v1.1.9
github.com/nakabonne/tstorage v0.3.6
github.com/panjf2000/ants/v2 v2.8.2
github.com/pkg/errors v0.9.1
github.com/robfig/cron/v3 v3.0.1
github.com/spf13/cast v1.5.1
github.com/vmihailenco/msgpack/v5 v5.4.1
go.uber.org/zap v1.26.0
golang.org/x/sync v0.4.0
golang.org/x/text v0.13.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/bytedance/sonic v1.7.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
github.com/elastic/elastic-transport-go/v8 v8.3.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/goccy/go-json v0.10.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
google.golang.org/protobuf v1.26.0 // indirect
)