12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- module github.com/lf-edge/ekuiper
- require (
- github.com/Masterminds/sprig/v3 v3.2.1
- github.com/PaesslerAG/gval v1.0.0
- github.com/PaesslerAG/jsonpath v0.1.1
- github.com/alicebob/miniredis/v2 v2.15.1
- github.com/benbjohnson/clock v1.0.0
- github.com/eclipse/paho.mqtt.golang v1.3.5
- github.com/edgexfoundry/go-mod-core-contracts/v2 v2.1.0
- github.com/edgexfoundry/go-mod-messaging/v2 v2.1.0
- github.com/gdexlab/go-render v1.0.1
- github.com/go-redis/redis/v7 v7.3.0
- github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
- github.com/golang-jwt/jwt v3.2.2+incompatible
- github.com/golang/protobuf v1.5.2
- github.com/gomodule/redigo v2.0.0+incompatible
- github.com/google/uuid v1.3.0
- github.com/gorilla/handlers v1.4.2
- github.com/gorilla/mux v1.7.3
- github.com/influxdata/influxdb1-client v0.0.0-20200827194710-b269163b24ab
- github.com/jhump/protoreflect v1.8.2
- github.com/keepeye/logrus-filename v0.0.0-20190711075016-ce01a4391dd1
- github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
- github.com/mattn/go-sqlite3 v1.14.5
- github.com/mitchellh/mapstructure v1.4.1
- github.com/msgpack-rpc/msgpack-rpc-go v0.0.0-20131026060856-c76397e1782b
- github.com/pebbe/zmq4 v1.2.7
- github.com/prometheus/client_golang v1.11.0
- github.com/sirupsen/logrus v1.8.1
- github.com/ugorji/go/codec v1.2.5
- github.com/urfave/cli v1.22.0
- go.nanomsg.org/mangos/v3 v3.2.1
- golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
- google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c
- google.golang.org/grpc v1.38.0
- google.golang.org/protobuf v1.27.1
- gopkg.in/ini.v1 v1.62.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- )
- require (
- github.com/Masterminds/goutils v1.1.1 // indirect
- github.com/Masterminds/semver/v3 v3.1.1 // indirect
- github.com/Microsoft/go-winio v0.4.11 // indirect
- github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
- github.com/beorn7/perks v1.0.1 // indirect
- github.com/cespare/xxhash/v2 v2.1.1 // indirect
- github.com/cpuguy83/go-md2man v1.0.10 // indirect
- github.com/fastly/go-utils v0.0.0-20180712184237-d95a45783239 // indirect
- github.com/fxamacker/cbor/v2 v2.3.0 // indirect
- github.com/go-playground/locales v0.14.0 // indirect
- github.com/go-playground/universal-translator v0.18.0 // indirect
- github.com/go-playground/validator/v10 v10.9.0 // indirect
- github.com/gorilla/websocket v1.4.2 // indirect
- github.com/huandu/xstrings v1.3.2 // indirect
- github.com/imdario/mergo v0.3.12 // indirect
- github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
- github.com/jonboulle/clockwork v0.2.2 // indirect
- github.com/leodido/go-urn v1.2.1 // indirect
- github.com/lestrrat-go/strftime v1.0.3 // indirect
- github.com/mattn/go-tflite v1.0.1 // indirect
- github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
- github.com/mitchellh/copystructure v1.2.0 // indirect
- github.com/mitchellh/reflectwalk v1.0.2 // indirect
- github.com/mmcloughlin/geohash v0.10.0 // indirect
- github.com/msgpack/msgpack-go v0.0.0-20130625150338-8224460e6fa3 // indirect
- github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
- github.com/pkg/errors v0.9.1 // indirect
- github.com/prometheus/client_model v0.2.0 // indirect
- github.com/prometheus/common v0.26.0 // indirect
- github.com/prometheus/procfs v0.6.0 // indirect
- github.com/russross/blackfriday v1.5.2 // indirect
- github.com/shopspring/decimal v1.2.0 // indirect
- github.com/spf13/cast v1.3.1 // indirect
- github.com/taosdata/driver-go/v2 v2.0.0 // indirect
- github.com/tebeka/strftime v0.1.5 // indirect
- github.com/x448/float16 v0.8.4 // indirect
- github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da // indirect
- golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
- golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069 // indirect
- golang.org/x/text v0.3.6 // indirect
- gopkg.in/yaml.v2 v2.4.0 // indirect
- )
- replace github.com/lf-edge/ekuiper/extensions => ./extensions
- go 1.17
|