2022-05-13 13:30:22 +00:00
|
|
|
module github.com/databricks/bricks
|
|
|
|
|
2022-09-05 18:25:54 +00:00
|
|
|
go 1.18
|
2022-05-13 13:30:22 +00:00
|
|
|
|
|
|
|
require (
|
2022-07-07 18:56:59 +00:00
|
|
|
github.com/atotto/clipboard v0.1.4
|
2023-03-15 18:01:05 +00:00
|
|
|
github.com/databricks/databricks-sdk-go v0.5.0
|
2022-05-14 17:56:09 +00:00
|
|
|
github.com/ghodss/yaml v1.0.0 // MIT + NOTICE
|
|
|
|
github.com/manifoldco/promptui v0.9.0 // BSD-3-Clause license
|
|
|
|
github.com/mitchellh/go-homedir v1.1.0 // MIT
|
2022-07-07 18:56:59 +00:00
|
|
|
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // BSD-2-Clause
|
|
|
|
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // MIT
|
2022-12-14 10:00:44 +00:00
|
|
|
github.com/spf13/cobra v1.6.1 // Apache 2.0
|
2023-03-09 09:27:51 +00:00
|
|
|
github.com/stretchr/testify v1.8.2 // MIT
|
2022-05-14 17:56:09 +00:00
|
|
|
github.com/whilp/git-urls v1.0.0 // MIT
|
2023-03-09 09:29:51 +00:00
|
|
|
golang.org/x/mod v0.9.0 // BSD-3-Clause
|
2022-09-02 12:00:16 +00:00
|
|
|
gopkg.in/ini.v1 v1.67.0 // Apache 2.0
|
2022-05-13 13:30:22 +00:00
|
|
|
)
|
2022-09-05 18:25:54 +00:00
|
|
|
|
2022-11-08 12:51:08 +00:00
|
|
|
require (
|
2023-03-15 18:02:08 +00:00
|
|
|
github.com/fatih/color v1.15.0
|
2022-12-05 23:40:45 +00:00
|
|
|
github.com/google/uuid v1.3.0
|
|
|
|
github.com/hashicorp/go-version v1.6.0
|
2023-02-20 09:21:47 +00:00
|
|
|
github.com/hashicorp/hc-install v0.5.0
|
2023-03-09 09:29:36 +00:00
|
|
|
github.com/hashicorp/terraform-exec v0.18.1
|
2023-03-10 10:57:33 +00:00
|
|
|
github.com/hashicorp/terraform-json v0.16.0
|
Add structured logging infrastructure (#246)
New global flags:
* `--log-file FILE`: can be literal `stdout`, `stderr`, or a file name (default `stderr`)
* `--log-level LEVEL`: can be `error`, `warn`, `info`, `debug`, `trace`, or `disabled` (default `disabled`)
* `--log-format TYPE`: can be `text` or `json` (default `text`)
New functions in the `log` package take a `context.Context` and retrieve
the logger from said context.
Because we carry the logger in a context, adding
[attributes](https://pkg.go.dev/golang.org/x/exp/slog#hdr-Attrs_and_Values)
to the logger can be done as follows:
```go
ctx = log.NewContext(ctx, log.GetLogger(ctx).With("foo", "bar"))
```
2023-03-16 13:46:53 +00:00
|
|
|
golang.org/x/exp v0.0.0-20230310171629-522b1b587ee0
|
2022-11-09 14:01:47 +00:00
|
|
|
golang.org/x/sync v0.1.0
|
2023-03-29 12:58:09 +00:00
|
|
|
golang.org/x/term v0.6.0
|
2022-11-08 12:51:08 +00:00
|
|
|
)
|
2022-10-04 22:12:57 +00:00
|
|
|
|
2022-12-05 23:40:45 +00:00
|
|
|
require (
|
2023-03-09 09:29:36 +00:00
|
|
|
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
|
2022-12-05 23:40:45 +00:00
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
2023-02-20 22:40:14 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
2023-03-09 09:29:36 +00:00
|
|
|
github.com/zclconf/go-cty v1.13.0 // indirect
|
2023-02-20 09:21:47 +00:00
|
|
|
golang.org/x/crypto v0.5.0 // indirect
|
2022-12-05 23:40:45 +00:00
|
|
|
)
|
|
|
|
|
2022-09-05 18:25:54 +00:00
|
|
|
require (
|
2023-02-20 15:00:20 +00:00
|
|
|
cloud.google.com/go/compute v1.18.0 // indirect
|
|
|
|
cloud.google.com/go/compute/metadata v0.2.3 // indirect
|
2022-09-05 18:25:54 +00:00
|
|
|
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
|
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
|
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
2023-02-20 15:00:20 +00:00
|
|
|
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
|
2022-11-18 09:57:31 +00:00
|
|
|
github.com/imdario/mergo v0.3.13
|
2022-12-14 10:00:44 +00:00
|
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
2022-09-05 18:25:54 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2022-12-23 14:17:16 +00:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2022-11-17 10:24:09 +00:00
|
|
|
go.opencensus.io v0.24.0 // indirect
|
2023-03-09 13:29:53 +00:00
|
|
|
golang.org/x/net v0.8.0 // indirect
|
|
|
|
golang.org/x/oauth2 v0.6.0
|
|
|
|
golang.org/x/sys v0.6.0 // indirect
|
2023-03-09 09:28:53 +00:00
|
|
|
golang.org/x/text v0.8.0
|
2023-03-09 13:29:53 +00:00
|
|
|
golang.org/x/time v0.3.0 // indirect
|
2023-03-15 18:01:05 +00:00
|
|
|
google.golang.org/api v0.112.0 // indirect
|
2022-09-05 18:25:54 +00:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2023-03-15 18:01:05 +00:00
|
|
|
google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488 // indirect
|
2023-02-20 15:00:20 +00:00
|
|
|
google.golang.org/grpc v1.53.0 // indirect
|
2022-11-09 14:01:47 +00:00
|
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
2023-01-23 14:00:11 +00:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2023-03-15 02:18:51 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2022-09-05 18:25:54 +00:00
|
|
|
)
|