-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
42 lines (40 loc) · 1.93 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
module github.com/thingsplex/tpflow
require (
github.com/BurntSushi/toml v0.3.0 // indirect
github.com/ChrisTrenkamp/goxpath v0.0.0-20170922090931-c385f95c6022
github.com/DataDog/zstd v1.3.4 // indirect
github.com/Knetic/govaluate v3.0.0+incompatible
github.com/Sereal/Sereal v0.0.0-20180727013122-68c42fd7bfdf // indirect
github.com/asdine/storm v2.1.1+incompatible
github.com/boltdb/bolt v1.3.1
github.com/buger/jsonparser v0.0.0-20180808090653-f4dd9f5a6b44 // indirect
github.com/coreos/bbolt v1.3.0 // indirect
github.com/cpucycle/astrotime v0.0.0-20120927164819-9c7d514efdb5
github.com/dchest/uniuri v0.0.0-20160212164326-8902c56451e9
github.com/futurehomeno/fimpgo v1.5.4-0.20200621092738-fa5833b696ec
github.com/golang/protobuf v1.2.0 // indirect
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/imdario/mergo v0.3.6
github.com/influxdata/influxdb v1.6.2
github.com/kelvins/sunrisesunset v0.0.0-20170601204625-14f1915ad4b4
github.com/labstack/gommon v0.2.1
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/mitchellh/mapstructure v1.0.0
github.com/nathan-osman/go-sunrise v0.0.0-20171121204956-7c449e7c690b
github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852
github.com/pkg/errors v0.8.0
github.com/robfig/cron/v3 v3.0.0
github.com/sirupsen/logrus v1.3.0
github.com/valyala/bytebufferpool v0.0.0-20160817181652-e746df99fe4a // indirect
github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4 // indirect
github.com/vmihailenco/msgpack v4.0.0+incompatible // indirect
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d // indirect
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f // indirect
golang.org/x/text v0.3.0 // indirect
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e
google.golang.org/appengine v1.1.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/yaml.v2 v2.2.1 // indirect
)
go 1.13