Skip to content

Commit

Permalink
src: make update-runtimes
Browse files Browse the repository at this point in the history
- Updates func-runtime-go 20 v0.2.3
- Create an 'update-runtimes' make target
- Standardizes plurality of "Cloudevents" throughout
  • Loading branch information
lkingland committed Jun 22, 2023
1 parent 7b5bd33 commit 3bd4b6e
Show file tree
Hide file tree
Showing 27 changed files with 12,029 additions and 11,943 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,16 @@ test-typescript: ## Test Typescript templates
cd templates/typescript/cloudevents && npm ci && npm test && rm -rf node_modules build
cd templates/typescript/http && npm ci && npm test && rm -rf node_modules build

###############
##@ Scaffolding
###############

update-runtimes: ## Update Scaffolding Runtimes
cd templates/go/scaffolding/instanced-http && go get -u github.com/lkingland/func-runtime-go/http
cd templates/go/scaffolding/static-http && go get -u github.com/lkingland/func-runtime-go/http
cd templates/go/scaffolding/instanced-cloudevents && go get -u github.com/lkingland/func-runtime-go/cloudevents
cd templates/go/scaffolding/static-cloudevents && go get -u github.com/lkingland/func-runtime-go/cloudevents


###################
##@ Extended Testing (cluster required)
Expand Down
23,689 changes: 11,860 additions & 11,829 deletions generate/zz_filesystem_generated.go

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions pkg/scaffolding/detectors_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ package f
func Handle() { }
`},
{
Name: "Instanced Cloudevent",
Sig: InstancedCloudevent,
Name: "Instanced Cloudevents",
Sig: InstancedCloudevents,
Err: nil,
Inv: "cloudevent",
Inv: "cloudevent", // Invoke is the only place Cloudevents is singular
Src: `
package f
func New() { }
`},
{
Name: "Static Cloudevent",
Sig: StaticCloudevent,
Name: "Static Cloudevents",
Sig: StaticCloudevents,
Err: nil,
Inv: "cloudevent",
Src: `
Expand Down
16 changes: 10 additions & 6 deletions pkg/scaffolding/signatures.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,32 @@ type Signature int
const (
UnknownSignature Signature = iota
InstancedHTTP
InstancedCloudevent
InstancedCloudevents
StaticHTTP
StaticCloudevent
StaticCloudevents
)

func (s Signature) String() string {
return []string{
"unknown",
"instanced-http",
"instanced-cloudevent",
"instanced-cloudevents",
"static-http",
"static-cloudevent",
"static-cloudevents",
}[s]
}

// Note that in all places other than the invocation hint (where singular
// is logically correct) "cloudevents" is plural in all places (variables,
// imports, enums etc) to match the Cloudevents library and organization's
// choice.
var signatureMap = map[bool]map[string]Signature{
true: {
"http": InstancedHTTP,
"cloudevent": InstancedCloudevent},
"cloudevent": InstancedCloudevents},
false: {
"http": StaticHTTP,
"cloudevent": StaticCloudevent},
"cloudevent": StaticCloudevents},
}

// toSignature converts an instanced boolean and invocation hint into
Expand Down
4 changes: 2 additions & 2 deletions pkg/scaffolding/signatures_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ func TestSignatures(t *testing.T) {
}{
{true, "", InstancedHTTP, "instanced-http"},
{true, "http", InstancedHTTP, "instanced-http"},
{true, "cloudevent", InstancedCloudevent, "instanced-cloudevent"},
{true, "cloudevent", InstancedCloudevents, "instanced-cloudevents"},
{false, "", StaticHTTP, "static-http"},
{false, "http", StaticHTTP, "static-http"},
{false, "cloudevent", StaticCloudevent, "static-cloudevent"},
{false, "cloudevent", StaticCloudevents, "static-cloudevents"},
{true, "invalid", UnknownSignature, "unknown"},
{false, "invalid", UnknownSignature, "unknown"},
}
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion templates/go/scaffolding/instanced-cloudevent/f

This file was deleted.

21 changes: 0 additions & 21 deletions templates/go/scaffolding/instanced-cloudevent/go.mod

This file was deleted.

1 change: 1 addition & 0 deletions templates/go/scaffolding/instanced-cloudevents/f
21 changes: 21 additions & 0 deletions templates/go/scaffolding/instanced-cloudevents/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module s

replace f => ./f

go 1.19

require (
f v0.0.0-00010101000000-000000000000
github.com/lkingland/func-runtime-go v0.2.3
)

require (
github.com/cloudevents/sdk-go/v2 v2.14.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.24.0 // indirect
)
Original file line number Diff line number Diff line change
@@ -1,52 +1,50 @@
github.com/cloudevents/sdk-go/v2 v2.13.0 h1:2zxDS8RyY1/wVPULGGbdgniGXSzLaRJVl136fLXGsYw=
github.com/cloudevents/sdk-go/v2 v2.13.0/go.mod h1:xDmKfzNjM8gBvjaF8ijFjM1VYOVUEeUfapHMUX1T5To=
github.com/cloudevents/sdk-go/v2 v2.14.0 h1:Nrob4FwVgi5L4tV9lhjzZcjYqFVyJzsA56CwPaPfv6s=
github.com/cloudevents/sdk-go/v2 v2.14.0/go.mod h1:xDmKfzNjM8gBvjaF8ijFjM1VYOVUEeUfapHMUX1T5To=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/google/go-cmp v0.5.0 h1:/QaMHBdZ26BB3SSst0Iwl10Epc+xhTquomWX0oZEB6w=
github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/json-iterator/go v1.1.10 h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/lkingland/func-runtimes/go v0.0.0-20230403054747-5fbec20313d5 h1:OLIHfxRualqZEdAktFhHlU0IoKVNqNwTCO2X1eht65g=
github.com/lkingland/func-runtimes/go v0.0.0-20230403054747-5fbec20313d5/go.mod h1:339P4Ba/ZC8UxY8yYo+XkqvvnFNYhLtN2A3hpKsGZXA=
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc=
github.com/lkingland/func-runtime-go v0.2.3 h1:D3s4oX3jGGVRy1R5P5yChpVw+BxI3MSfvZSzoUDbkCQ=
github.com/lkingland/func-runtime-go v0.2.3/go.mod h1:Wwxm0tIfTK0giN6tFR2KWbSWevb2BCc/0C6LhFlGOtU=
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 h1:Esafd1046DLDQ0W1YjYsBW+p8U2u7vzgW2SQVmlNazg=
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
go.uber.org/atomic v1.4.0 h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/multierr v1.1.0 h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=
go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=
go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0=
go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=
go.uber.org/zap v1.10.0 h1:ORx85nbTijNz8ljznvCMR1ZBIPKFn3jQrag10X2AsuM=
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=
go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac h1:7zkz7BUtwNFFqcowJ+RIgu2MaV/MapERkDIy+mwPyjs=
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

ce "github.com/lkingland/func-runtimes/go/cloudevents"
ce "github.com/lkingland/func-runtime-go/cloudevents"

f "f"
)
Expand Down
8 changes: 7 additions & 1 deletion templates/go/scaffolding/instanced-http/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,10 @@ go 1.19

require f v0.0.0-00010101000000-000000000000

require github.com/lkingland/func-runtimes/go v0.0.0-20230404115549-fe2343822c3c
require (
github.com/lkingland/func-runtime-go v0.2.3 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/rs/zerolog v1.29.1 // indirect
golang.org/x/sys v0.8.0 // indirect
)
30 changes: 24 additions & 6 deletions templates/go/scaffolding/instanced-http/go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
github.com/lkingland/func-runtimes/go v0.0.0-20230331021437-a8c5bfbe75cb h1:orlTxxyV1B9KwwtMhHRjGPprt943iRdGuxG+90U3taI=
github.com/lkingland/func-runtimes/go v0.0.0-20230331021437-a8c5bfbe75cb/go.mod h1:ELN4ppasVTq8+wvD6cxgg0i9AlfM4OMKj0tCkmdOXZg=
github.com/lkingland/func-runtimes/go v0.0.0-20230331062015-1284f990e1cf h1:TUEougaNZ4UQTpQS/GwJ3/PVX8kZmsd9KLke2DdEgOk=
github.com/lkingland/func-runtimes/go v0.0.0-20230331062015-1284f990e1cf/go.mod h1:339P4Ba/ZC8UxY8yYo+XkqvvnFNYhLtN2A3hpKsGZXA=
github.com/lkingland/func-runtimes/go v0.0.0-20230404115549-fe2343822c3c h1:ReQC6FGb/RxY7CyL/NX1loX7z/lsJZY3munSXzEEmII=
github.com/lkingland/func-runtimes/go v0.0.0-20230404115549-fe2343822c3c/go.mod h1:339P4Ba/ZC8UxY8yYo+XkqvvnFNYhLtN2A3hpKsGZXA=
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
github.com/lkingland/func-runtime-go v0.2.1 h1:FDQNI+o365NmyF0GS5TqpxvDPX63LhHp7O7tIHzlIqc=
github.com/lkingland/func-runtime-go v0.2.1/go.mod h1:Wwxm0tIfTK0giN6tFR2KWbSWevb2BCc/0C6LhFlGOtU=
github.com/mattn/go-colorable v0.1.12 h1:jF+Du6AlPIjs2BiUiQlKOX0rt3SujHxPnksPKZbaA40=
github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4=
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=
github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA=
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg=
github.com/rs/zerolog v1.29.1 h1:cO+d60CHkknCbvzEWxP0S9K6KqyTjrCNUy1LdQLCGPc=
github.com/rs/zerolog v1.29.1/go.mod h1:Le6ESbR7hc+DP6Lt1THiV8CQSdkkNrd3R0XbEgp3ZBU=
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6 h1:foEbQz/B0Oz6YIqu/69kfXPYeFQAuuMYFkjaqXzl5Wo=
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU=
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
2 changes: 1 addition & 1 deletion templates/go/scaffolding/instanced-http/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/lkingland/func-runtimes/go/http"
"github.com/lkingland/func-runtime-go/http"

f "f"
)
Expand Down
21 changes: 0 additions & 21 deletions templates/go/scaffolding/static-cloudevent/go.mod

This file was deleted.

21 changes: 21 additions & 0 deletions templates/go/scaffolding/static-cloudevents/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module s

replace f => ./f

go 1.19

require (
f v0.0.0-00010101000000-000000000000
github.com/lkingland/func-runtime-go v0.2.3
)

require (
github.com/cloudevents/sdk-go/v2 v2.14.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.24.0 // indirect
)
Loading

0 comments on commit 3bd4b6e

Please sign in to comment.