mirror of https://github.com/dapr/go-sdk.git
26 lines
792 B
Modula-2
26 lines
792 B
Modula-2
module github.com/dapr/go-sdk/examples/configuration
|
|
|
|
go 1.17
|
|
|
|
// Needed to validate SDK changes in CI/CD
|
|
replace github.com/dapr/go-sdk => ../../
|
|
|
|
require (
|
|
github.com/dapr/go-sdk v0.0.0-00010101000000-000000000000
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
google.golang.org/grpc v1.52.3
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
golang.org/x/net v0.5.0 // indirect
|
|
golang.org/x/sys v0.4.0 // indirect
|
|
golang.org/x/text v0.6.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230104163317-caabf589fcbf // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|