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
|
module github.com/aws/aws-sdk-go-v2/service/transcribestreaming/internal/testing
go 1.19
require (
github.com/aws/aws-sdk-go-v2 v1.24.1
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4
github.com/aws/aws-sdk-go-v2/service/internal/eventstreamtesting v1.2.17
github.com/aws/aws-sdk-go-v2/service/transcribestreaming v1.15.6
github.com/aws/smithy-go v1.19.0
github.com/google/go-cmp v0.5.8
)
require (
github.com/aws/aws-sdk-go-v2/credentials v1.16.14 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
)
replace github.com/aws/aws-sdk-go-v2 => ../../../../
replace github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream => ../../../../aws/protocol/eventstream/
replace github.com/aws/aws-sdk-go-v2/credentials => ../../../../credentials/
replace github.com/aws/aws-sdk-go-v2/feature/ec2/imds => ../../../../feature/ec2/imds/
replace github.com/aws/aws-sdk-go-v2/internal/configsources => ../../../../internal/configsources/
replace github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 => ../../../../internal/endpoints/v2/
replace github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding => ../../../../service/internal/accept-encoding/
replace github.com/aws/aws-sdk-go-v2/service/internal/eventstreamtesting => ../../../../service/internal/eventstreamtesting/
replace github.com/aws/aws-sdk-go-v2/service/internal/presigned-url => ../../../../service/internal/presigned-url/
replace github.com/aws/aws-sdk-go-v2/service/sso => ../../../../service/sso/
replace github.com/aws/aws-sdk-go-v2/service/ssooidc => ../../../../service/ssooidc/
replace github.com/aws/aws-sdk-go-v2/service/sts => ../../../../service/sts/
replace github.com/aws/aws-sdk-go-v2/service/transcribestreaming => ../../../../service/transcribestreaming/
|