|
1 | 1 | module github.com/hashicorp/terraform-provider-googleworkspace |
2 | 2 |
|
3 | 3 | go 1.16 |
| 4 | +toolchain go1.24.1 |
4 | 5 |
|
5 | 6 | require ( |
6 | 7 | github.com/hashicorp/errwrap v1.1.0 |
7 | 8 | github.com/hashicorp/go-cleanhttp v0.5.2 |
8 | | - github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 |
| 9 | + github.com/hashicorp/go-cty v1.5.0 |
9 | 10 | github.com/hashicorp/terraform-plugin-docs v0.21.0 |
10 | 11 | github.com/hashicorp/terraform-plugin-sdk/v2 v2.16.0 |
11 | 12 | github.com/mitchellh/go-homedir v1.1.0 |
12 | 13 | golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 |
13 | 14 | google.golang.org/api v0.79.0 |
14 | 15 | ) |
| 16 | + |
| 17 | +require ( |
| 18 | + cloud.google.com/go/compute v1.6.1 // indirect |
| 19 | + github.com/BurntSushi/toml v1.2.1 // indirect |
| 20 | + github.com/Kunde21/markdownfmt/v3 v3.1.0 // indirect |
| 21 | + github.com/Masterminds/goutils v1.1.1 // indirect |
| 22 | + github.com/Masterminds/semver/v3 v3.2.0 // indirect |
| 23 | + github.com/Masterminds/sprig/v3 v3.2.3 // indirect |
| 24 | + github.com/ProtonMail/go-crypto v1.1.3 // indirect |
| 25 | + github.com/agext/levenshtein v1.2.2 // indirect |
| 26 | + github.com/apparentlymart/go-cidr v1.1.0 // indirect |
| 27 | + github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect |
| 28 | + github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect |
| 29 | + github.com/armon/go-radix v1.0.0 // indirect |
| 30 | + github.com/bgentry/speakeasy v0.1.0 // indirect |
| 31 | + github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect |
| 32 | + github.com/cloudflare/circl v1.3.7 // indirect |
| 33 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 34 | + github.com/fatih/color v1.16.0 // indirect |
| 35 | + github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| 36 | + github.com/golang/protobuf v1.5.3 // indirect |
| 37 | + github.com/google/go-cmp v0.6.0 // indirect |
| 38 | + github.com/google/uuid v1.3.0 // indirect |
| 39 | + github.com/googleapis/gax-go/v2 v2.3.0 // indirect |
| 40 | + github.com/hashicorp/cli v1.1.7 // indirect |
| 41 | + github.com/hashicorp/go-checkpoint v0.5.0 // indirect |
| 42 | + github.com/hashicorp/go-hclog v1.6.3 // indirect |
| 43 | + github.com/hashicorp/go-multierror v1.1.1 // indirect |
| 44 | + github.com/hashicorp/go-plugin v1.4.3 // indirect |
| 45 | + github.com/hashicorp/go-retryablehttp v0.7.7 // indirect |
| 46 | + github.com/hashicorp/go-uuid v1.0.3 // indirect |
| 47 | + github.com/hashicorp/go-version v1.7.0 // indirect |
| 48 | + github.com/hashicorp/hc-install v0.9.1 // indirect |
| 49 | + github.com/hashicorp/hcl/v2 v2.12.0 // indirect |
| 50 | + github.com/hashicorp/logutils v1.0.0 // indirect |
| 51 | + github.com/hashicorp/terraform-exec v0.22.0 // indirect |
| 52 | + github.com/hashicorp/terraform-json v0.24.0 // indirect |
| 53 | + github.com/hashicorp/terraform-plugin-go v0.9.0 // indirect |
| 54 | + github.com/hashicorp/terraform-plugin-log v0.4.0 // indirect |
| 55 | + github.com/hashicorp/terraform-registry-address v0.0.0-20210412075316-9b2996cce896 // indirect |
| 56 | + github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect |
| 57 | + github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect |
| 58 | + github.com/huandu/xstrings v1.3.3 // indirect |
| 59 | + github.com/imdario/mergo v0.3.15 // indirect |
| 60 | + github.com/kr/pretty v0.3.1 // indirect |
| 61 | + github.com/mattn/go-colorable v0.1.14 // indirect |
| 62 | + github.com/mattn/go-isatty v0.0.20 // indirect |
| 63 | + github.com/mattn/go-runewidth v0.0.9 // indirect |
| 64 | + github.com/mitchellh/copystructure v1.2.0 // indirect |
| 65 | + github.com/mitchellh/go-testing-interface v1.14.1 // indirect |
| 66 | + github.com/mitchellh/go-wordwrap v1.0.0 // indirect |
| 67 | + github.com/mitchellh/mapstructure v1.5.0 // indirect |
| 68 | + github.com/mitchellh/reflectwalk v1.0.2 // indirect |
| 69 | + github.com/oklog/run v1.0.0 // indirect |
| 70 | + github.com/posener/complete v1.2.3 // indirect |
| 71 | + github.com/shopspring/decimal v1.3.1 // indirect |
| 72 | + github.com/spf13/cast v1.5.0 // indirect |
| 73 | + github.com/stretchr/testify v1.10.0 // indirect |
| 74 | + github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect |
| 75 | + github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect |
| 76 | + github.com/vmihailenco/tagparser v0.1.1 // indirect |
| 77 | + github.com/yuin/goldmark v1.7.7 // indirect |
| 78 | + github.com/yuin/goldmark-meta v1.1.0 // indirect |
| 79 | + github.com/zclconf/go-cty v1.16.2 // indirect |
| 80 | + go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect |
| 81 | + go.opencensus.io v0.23.0 // indirect |
| 82 | + golang.org/x/crypto v0.32.0 // indirect |
| 83 | + golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect |
| 84 | + golang.org/x/mod v0.22.0 // indirect |
| 85 | + golang.org/x/net v0.33.0 // indirect |
| 86 | + golang.org/x/sys v0.29.0 // indirect |
| 87 | + golang.org/x/text v0.22.0 // indirect |
| 88 | + google.golang.org/appengine v1.6.7 // indirect |
| 89 | + google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3 // indirect |
| 90 | + google.golang.org/grpc v1.46.0 // indirect |
| 91 | + google.golang.org/protobuf v1.34.1 // indirect |
| 92 | + gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect |
| 93 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 94 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 95 | +) |
0 commit comments