-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathgo.mod
48 lines (46 loc) · 2.69 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
module github.com/project-flogo/microgateway
require (
github.com/awalterschulze/gographviz v0.0.0-20170410065617-c84395e536e1 // indirect
github.com/chewxy/hm v1.0.0 // indirect
github.com/chewxy/math32 v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gogo/protobuf v1.1.1 // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/gonum/blas v0.0.0-20180125090452-e7c5890b24cf // indirect
github.com/google/flatbuffers v1.10.0 // indirect
github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277
github.com/graphql-go/graphql v0.7.8
github.com/leesper/go_rng v0.0.0-20171009123644-5344a9259b21 // indirect
github.com/pkg/errors v0.8.0 // indirect
github.com/project-flogo/contrib v0.9.0-alpha.4.0.20190509204259-4246269fb68e
github.com/project-flogo/contrib/activity/channel v0.9.0-rc.1.0.20190509204259-4246269fb68e
github.com/project-flogo/contrib/activity/counter v0.9.0-rc.1.0.20190509204259-4246269fb68e
github.com/project-flogo/contrib/activity/log v0.9.0-rc.1.0.20190509204259-4246269fb68e
github.com/project-flogo/contrib/activity/rest v0.9.0-rc.1.0.20190509204259-4246269fb68e
github.com/project-flogo/contrib/function/coerce v0.9.0-rc.2.0.20190509204259-4246269fb68e
github.com/project-flogo/contrib/function/json v0.9.0-rc.1.0.20190509204259-4246269fb68e
github.com/project-flogo/contrib/function/number v0.9.0-rc.1.0.20190509204259-4246269fb68e
github.com/project-flogo/contrib/function/string v0.9.0-rc.1.0.20190509204259-4246269fb68e
github.com/project-flogo/contrib/trigger/channel v0.0.0-20190509204259-4246269fb68e
github.com/project-flogo/contrib/trigger/rest v0.9.0-rc.1.0.20190509204259-4246269fb68e
github.com/project-flogo/core v0.9.5-0.20191107201139-c4e948d4cc8d
github.com/stretchr/objx v0.1.1 // indirect
github.com/stretchr/testify v1.3.0
github.com/ulule/limiter v2.2.0+incompatible
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.1.0
github.com/xtgo/set v1.0.0 // indirect
golang.org/x/exp v0.0.0-20181022080537-42ba7d4b6eb2 // indirect
golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f // indirect
gonum.org/v1/gonum v0.0.0-20180622153253-e9e56344e335 // indirect
gorgonia.org/cu v0.8.0 // indirect
gorgonia.org/dawson v1.0.0 // indirect
gorgonia.org/gorgonia v0.9.0-beta
gorgonia.org/tensor v0.9.0-beta
gorgonia.org/vecf32 v0.0.0-20180224100446-da24147133d9 // indirect
gorgonia.org/vecf64 v0.0.0-20180224100512-6314d1b6cefc // indirect
)
go 1.13