-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
77 lines (70 loc) · 2.97 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
module github.com/IMT-Atlantique-FIL-2020-2023/NADA-extended
go 1.17
require github.com/eclipse/paho.mqtt.golang v1.3.5
require (
github.com/99designs/gqlgen v0.14.0
github.com/gorilla/websocket v1.4.2 // indirect
github.com/influxdata/influxdb-client-go/v2 v2.5.1
github.com/joho/godotenv v1.4.0
github.com/knadh/koanf v1.2.4
github.com/rs/zerolog v1.25.0
github.com/vektah/gqlparser/v2 v2.2.0
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 // indirect
)
require (
github.com/agnivade/levenshtein v1.1.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/deepmap/oapi-codegen v1.8.2 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/matryer/moq v0.0.0-20200106131100-75d0ddfc0007 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/mithrandie/csvq v1.15.2 // indirect
github.com/mithrandie/go-file/v2 v2.0.2 // indirect
github.com/mithrandie/go-text v1.4.1 // indirect
github.com/mithrandie/readline-csvq v1.1.1 // indirect
github.com/mithrandie/ternary v1.1.0 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
github.com/urfave/cli/v2 v2.1.1 // indirect
github.com/vektah/dataloaden v0.3.0 // indirect
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/tools v0.1.5 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/ini.v1 v1.63.2 // indirect
)
require github.com/aquilax/go-perlin v1.1.0
require (
github.com/spf13/viper v1.9.0
gopkg.in/yaml.v2 v2.4.0 // indirect
)
require (
github.com/fatih/structs v1.1.0 // indirect
github.com/go-chi/chi v1.5.4
github.com/go-playground/validator/v10 v10.9.0
github.com/google/uuid v1.3.0
github.com/graph-gophers/dataloader/v6 v6.0.0
github.com/mitchellh/mapstructure v1.4.2
github.com/mithrandie/csvq-driver v1.4.3
github.com/rs/cors v1.6.0
)