2022-01-05 08:48:56 -06:00
|
|
|
module github.com/coder/coder
|
|
|
|
|
2022-03-28 14:14:40 -05:00
|
|
|
go 1.18
|
2022-01-05 09:20:56 -06:00
|
|
|
|
2022-02-10 08:33:27 -06:00
|
|
|
// Required until https://github.com/manifoldco/promptui/pull/169 is merged.
|
|
|
|
replace github.com/manifoldco/promptui => github.com/kylecarbs/promptui v0.8.1-0.20201231190244-d8f2159af2b2
|
|
|
|
|
feat: Add provisionerdaemon to coderd (#141)
* feat: Add history middleware parameters
These will be used for streaming logs, checking status,
and other operations related to workspace and project
history.
* refactor: Move all HTTP routes to top-level struct
Nesting all structs behind their respective structures
is leaky, and promotes naming conflicts between handlers.
Our HTTP routes cannot have conflicts, so neither should
function naming.
* Add provisioner daemon routes
* Add periodic updates
* Skip pubsub if short
* Return jobs with WorkspaceHistory
* Add endpoints for extracting singular history
* The full end-to-end operation works
* fix: Disable compression for websocket dRPC transport (#145)
There is a race condition in the interop between the websocket and `dRPC`: https://github.com/coder/coder/runs/5038545709?check_suite_focus=true#step:7:117 - it seems both the websocket and dRPC feel like they own the `byte[]` being sent between them. This can lead to data races, in which both `dRPC` and the websocket are writing.
This is just tracking some experimentation to fix that race condition
## Run results: ##
- Run 1: peer test failure
- Run 2: peer test failure
- Run 3: `TestWorkspaceHistory/CreateHistory` - https://github.com/coder/coder/runs/5040858460?check_suite_focus=true#step:8:45
```
status code 412: The provided project history is running. Wait for it to complete importing!`
```
- Run 4: `TestWorkspaceHistory/CreateHistory` - https://github.com/coder/coder/runs/5040957999?check_suite_focus=true#step:7:176
```
workspacehistory_test.go:122:
Error Trace: workspacehistory_test.go:122
Error: Condition never satisfied
Test: TestWorkspaceHistory/CreateHistory
```
- Run 5: peer failure
- Run 6: Pass ✅
- Run 7: Peer failure
## Open Questions: ##
### Is `dRPC` or `websocket` at fault for the data race?
It looks like this condition is specifically happening when `dRPC` decides to [`SendError`]). This constructs a new byte payload from [`MarshalError`](https://github.com/storj/drpc/blob/f6e369438f636b47ee788095d3fc13062ffbd019/drpcwire/error.go#L15) - so `dRPC` has created this buffer and owns it.
From `dRPC`'s perspective, the callstack looks like this:
- [`sendPacket`](https://github.com/storj/drpc/blob/f6e369438f636b47ee788095d3fc13062ffbd019/drpcstream/stream.go#L253)
- [`writeFrame`](https://github.com/storj/drpc/blob/f6e369438f636b47ee788095d3fc13062ffbd019/drpcwire/writer.go#L65)
- [`AppendFrame`](https://github.com/storj/drpc/blob/f6e369438f636b47ee788095d3fc13062ffbd019/drpcwire/packet.go#L128)
- with finally the data race happening here:
```go
// AppendFrame appends a marshaled form of the frame to the provided buffer.
func AppendFrame(buf []byte, fr Frame) []byte {
...
out := buf
out = append(out, control). // <---------
```
This should be fine, since `dPRC` create this buffer, and is taking the byte buffer constructed from `MarshalError` and tacking a bunch of headers on it to create a proper frame.
Once `dRPC` is done writing, it _hangs onto the buffer and resets it here__: https://github.com/storj/drpc/blob/f6e369438f636b47ee788095d3fc13062ffbd019/drpcwire/writer.go#L73
However... the websocket implementation, once it gets the buffer, it runs a `statelessDeflate` [here](https://github.com/nhooyr/websocket/blob/8dee580a7f74cf1713400307b4eee514b927870f/write.go#L180), which compresses the buffer on the fly. This functionality actually [mutates the buffer in place](https://github.com/klauspost/compress/blob/a1a9cfc821f00faf2f5231beaa96244344d50391/flate/stateless.go#L94), which is where get our race.
In the case where the `byte[]` aren't being manipulated anywhere else, this compress-in-place operation would be safe, and that's probably the case for most over-the-wire usages. In this case, though, where we're plumbing `dRPC` -> websocket, they both are manipulating it (`dRPC` is reusing the buffer for the next `write`, and `websocket` is compressing on the fly).
### Why does cloning on `Read` fail?
Get a bunch of errors like:
```
2022/02/02 19:26:10 [WARN] yamux: frame for missing stream: Vsn:0 Type:0 Flags:0 StreamID:0 Length:0
2022/02/02 19:26:25 [ERR] yamux: Failed to read header: unexpected EOF
2022/02/02 19:26:25 [ERR] yamux: Failed to read header: unexpected EOF
2022/02/02 19:26:25 [WARN] yamux: frame for missing stream: Vsn:0 Type:0 Flags:0 StreamID:0 Length:0
```
# UPDATE:
We decided we could disable websocket compression, which would avoid the race because the in-place `deflate` operaton would no longer be run. Trying that out now:
- Run 1: ✅
- Run 2: https://github.com/coder/coder/runs/5042645522?check_suite_focus=true#step:8:338
- Run 3: ✅
- Run 4: https://github.com/coder/coder/runs/5042988758?check_suite_focus=true#step:7:168
- Run 5: ✅
* fix: Remove race condition with acquiredJobDone channel (#148)
Found another data race while running the tests: https://github.com/coder/coder/runs/5044320845?check_suite_focus=true#step:7:83
__Issue:__ There is a race in the p.acquiredJobDone chan - in particular, there can be a case where we're waiting on the channel to finish (in close) with <-p.acquiredJobDone, but in parallel, an acquireJob could've been started, which would create a new channel for p.acquiredJobDone. There is a similar race in `close(..)`ing the channel, which also came up in test runs.
__Fix:__ Instead of recreating the channel everytime, we can use `sync.WaitGroup` to accomplish the same functionality - a semaphore to make close wait for the current job to wrap up.
* fix: Bump up workspace history timeout (#149)
This is an attempted fix for failures like: https://github.com/coder/coder/runs/5043435263?check_suite_focus=true#step:7:32
Looking at the timing of the test:
```
t.go:56: 2022-02-02 21:33:21.964 [DEBUG] (terraform-provisioner) <provision.go:139> ran apply
t.go:56: 2022-02-02 21:33:21.991 [DEBUG] (provisionerd) <provisionerd.go:162> skipping acquire; job is already running
t.go:56: 2022-02-02 21:33:22.050 [DEBUG] (provisionerd) <provisionerd.go:162> skipping acquire; job is already running
t.go:56: 2022-02-02 21:33:22.090 [DEBUG] (provisionerd) <provisionerd.go:162> skipping acquire; job is already running
t.go:56: 2022-02-02 21:33:22.140 [DEBUG] (provisionerd) <provisionerd.go:162> skipping acquire; job is already running
t.go:56: 2022-02-02 21:33:22.195 [DEBUG] (provisionerd) <provisionerd.go:162> skipping acquire; job is already running
t.go:56: 2022-02-02 21:33:22.240 [DEBUG] (provisionerd) <provisionerd.go:162> skipping acquire; job is already running
workspacehistory_test.go:122:
Error Trace: workspacehistory_test.go:122
Error: Condition never satisfied
Test: TestWorkspaceHistory/CreateHistory
```
It appears that the `terraform apply` job had just finished - with less than a second to spare until our `require.Eventually` completes - but there's still work to be done (ie, collecting the state files). So my suspicion is that terraform might, in some cases, exceed our 5s timeout.
Note that in the setup for this test - there is a similar project history wait that waits for 15s, so I borrowed that here.
In the future - we can look at potentially using a simple echo provider to exercise this in the unit test, in a way that is more reliable in terms of timing. I'll log an issue to track that.
Co-authored-by: Bryan <bryan@coder.com>
2022-02-03 14:34:50 -06:00
|
|
|
// Required until https://github.com/hashicorp/terraform-exec/pull/275 and https://github.com/hashicorp/terraform-exec/pull/276 are merged.
|
|
|
|
replace github.com/hashicorp/terraform-exec => github.com/kylecarbs/terraform-exec v0.15.1-0.20220202050609-a1ce7181b180
|
2022-01-31 23:36:15 -06:00
|
|
|
|
2022-01-08 11:24:02 -06:00
|
|
|
// Required until https://github.com/hashicorp/terraform-config-inspect/pull/74 is merged.
|
|
|
|
replace github.com/hashicorp/terraform-config-inspect => github.com/kylecarbs/terraform-config-inspect v0.0.0-20211215004401-bbc517866b88
|
|
|
|
|
2022-02-12 13:34:04 -06:00
|
|
|
// Required until https://github.com/chzyer/readline/pull/198 is merged.
|
|
|
|
replace github.com/chzyer/readline => github.com/kylecarbs/readline v0.0.0-20220211054233-0d62993714c8
|
|
|
|
|
2022-03-30 17:59:54 -05:00
|
|
|
// Required until https://github.com/briandowns/spinner/pull/136 is merged.
|
|
|
|
replace github.com/briandowns/spinner => github.com/kylecarbs/spinner v1.18.2-0.20220329160715-20702b5af89e
|
|
|
|
|
2022-04-24 20:33:19 -05:00
|
|
|
// Required until https://github.com/storj/drpc/pull/31 is merged.
|
|
|
|
replace storj.io/drpc => github.com/kylecarbs/drpc v0.0.31-0.20220424193521-8ebbaf48bdff
|
|
|
|
|
2022-03-07 11:40:54 -06:00
|
|
|
// opencensus-go leaks a goroutine by default.
|
|
|
|
replace go.opencensus.io => github.com/kylecarbs/opencensus-go v0.23.1-0.20220307014935-4d0325a68f8b
|
2022-02-21 09:56:14 -06:00
|
|
|
|
2022-03-22 13:17:50 -06:00
|
|
|
// These are to allow embedding the cloudflared quick-tunnel CLI.
|
|
|
|
// Required until https://github.com/cloudflare/cloudflared/pull/597 is merged.
|
2022-03-24 09:07:33 -06:00
|
|
|
replace github.com/cloudflare/cloudflared => github.com/kylecarbs/cloudflared v0.0.0-20220323202451-083379ce31c3
|
2022-03-22 13:17:50 -06:00
|
|
|
|
|
|
|
replace github.com/urfave/cli/v2 => github.com/ipostelnik/cli/v2 v2.3.1-0.20210324024421-b6ea8234fe3d
|
|
|
|
|
|
|
|
replace github.com/rivo/tview => github.com/kylecarbs/tview v0.0.0-20220309202238-8464256e10a1
|
|
|
|
|
2022-03-28 17:11:52 -05:00
|
|
|
// glog has a single goroutine leak on start that we removed in a fork: https://github.com/coder/glog/pull/1.
|
|
|
|
replace github.com/golang/glog => github.com/coder/glog v1.0.1-0.20220322161911-7365fe7f2cd1
|
|
|
|
|
2022-04-14 11:29:40 -04:00
|
|
|
// kcp-go starts a goroutine in an init function that we can't stop. It was
|
|
|
|
// fixed in our fork:
|
|
|
|
// https://github.com/coder/kcp-go/commit/83c0904cec69dcf21ec10c54ea666bda18ada831
|
|
|
|
replace github.com/fatedier/kcp-go => github.com/coder/kcp-go v2.0.4-0.20220409183554-83c0904cec69+incompatible
|
|
|
|
|
2022-01-05 09:20:56 -06:00
|
|
|
require (
|
2022-01-05 11:18:29 -06:00
|
|
|
cdr.dev/slog v1.4.1
|
2022-04-25 09:43:20 -05:00
|
|
|
cloud.google.com/go/compute v1.6.1
|
2022-03-28 18:19:28 -06:00
|
|
|
github.com/AlecAivazis/survey/v2 v2.3.4
|
2022-04-29 17:30:10 -05:00
|
|
|
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
|
2022-03-28 18:19:28 -06:00
|
|
|
github.com/awalterschulze/gographviz v2.0.3+incompatible
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/bgentry/speakeasy v0.1.0
|
2022-02-10 08:33:27 -06:00
|
|
|
github.com/briandowns/spinner v1.18.1
|
2022-05-09 19:00:11 -05:00
|
|
|
github.com/charmbracelet/charm v0.12.1
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/charmbracelet/lipgloss v0.5.0
|
2022-04-01 15:45:23 -05:00
|
|
|
github.com/cli/safeexec v1.0.0
|
2022-02-01 12:15:54 -06:00
|
|
|
github.com/coder/retry v1.3.0
|
2022-03-24 09:07:33 -06:00
|
|
|
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
|
2022-03-28 09:33:03 -05:00
|
|
|
github.com/creack/pty v1.1.18
|
2022-04-22 15:49:43 -05:00
|
|
|
github.com/fatedier/frp v0.42.0
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/fatedier/golib v0.1.1-0.20220321042308-c306138b83ac
|
2022-02-10 08:33:27 -06:00
|
|
|
github.com/fatih/color v1.13.0
|
2022-05-09 21:38:20 -05:00
|
|
|
github.com/fatih/structs v1.1.0
|
2022-04-19 08:48:13 -05:00
|
|
|
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/gen2brain/beeep v0.0.0-20220402123239-6a3042f4b71a
|
2022-05-16 08:31:21 -05:00
|
|
|
github.com/gliderlabs/ssh v0.3.4
|
2022-01-30 19:13:14 -08:00
|
|
|
github.com/go-chi/chi/v5 v5.0.7
|
2022-04-11 19:17:18 -05:00
|
|
|
github.com/go-chi/httprate v0.5.3
|
2022-01-13 16:55:28 -06:00
|
|
|
github.com/go-chi/render v1.0.1
|
2022-05-02 08:21:35 -05:00
|
|
|
github.com/go-playground/validator/v10 v10.11.0
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/gofrs/flock v0.8.1
|
2022-05-02 17:49:02 +00:00
|
|
|
github.com/gohugoio/hugo v0.98.0
|
2022-02-21 14:36:29 -06:00
|
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
2022-04-27 17:04:51 -05:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.15.2
|
2022-04-23 17:58:57 -05:00
|
|
|
github.com/google/go-github/v43 v43.0.1-0.20220414155304-00e42332e405
|
2022-01-08 11:24:02 -06:00
|
|
|
github.com/google/uuid v1.3.0
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/hashicorp/go-version v1.4.0
|
2022-05-11 09:05:25 -05:00
|
|
|
github.com/hashicorp/hc-install v0.3.2
|
2022-04-25 17:38:59 +00:00
|
|
|
github.com/hashicorp/hcl/v2 v2.12.0
|
2022-01-08 11:24:02 -06:00
|
|
|
github.com/hashicorp/terraform-config-inspect v0.0.0-20211115214459-90acf1ca460f
|
|
|
|
github.com/hashicorp/terraform-exec v0.15.0
|
2022-04-20 12:28:48 -05:00
|
|
|
github.com/hashicorp/terraform-json v0.13.0
|
2022-02-01 12:15:54 -06:00
|
|
|
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87
|
2022-04-15 10:03:23 -05:00
|
|
|
github.com/jedib0t/go-pretty/v6 v6.3.1
|
2022-01-19 11:55:06 -06:00
|
|
|
github.com/justinas/nosurf v1.1.1
|
2022-02-10 08:33:27 -06:00
|
|
|
github.com/kirsle/configdir v0.0.0-20170128060238-e45d2f54772f
|
2022-04-11 11:00:37 -05:00
|
|
|
github.com/lib/pq v1.10.5
|
2022-02-10 08:33:27 -06:00
|
|
|
github.com/mattn/go-isatty v0.0.14
|
2022-04-25 11:16:32 -05:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0
|
2022-05-16 09:13:20 -05:00
|
|
|
github.com/moby/moby v20.10.16+incompatible
|
2022-05-02 17:36:02 +00:00
|
|
|
github.com/open-policy-agent/opa v0.40.0
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/ory/dockertest/v3 v3.8.1
|
2022-01-05 11:18:29 -06:00
|
|
|
github.com/pion/datachannel v1.5.2
|
|
|
|
github.com/pion/logging v0.2.2
|
|
|
|
github.com/pion/transport v0.13.0
|
2022-04-18 17:40:25 -05:00
|
|
|
github.com/pion/turn/v2 v2.0.8
|
2022-05-19 00:10:40 +10:00
|
|
|
github.com/pion/udp v0.1.1
|
2022-05-16 08:30:53 -05:00
|
|
|
github.com/pion/webrtc/v3 v3.1.39
|
2022-02-18 08:23:49 -08:00
|
|
|
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
|
2022-04-11 19:17:18 -05:00
|
|
|
github.com/pkg/sftp v1.13.4
|
2022-05-16 09:35:11 -05:00
|
|
|
github.com/prometheus/client_golang v1.12.2
|
2022-03-22 14:50:55 -05:00
|
|
|
github.com/quasilyte/go-ruleguard/dsl v0.3.19
|
2022-04-11 19:17:18 -05:00
|
|
|
github.com/robfig/cron/v3 v3.0.1
|
2022-03-11 08:27:19 -06:00
|
|
|
github.com/spf13/cobra v1.4.0
|
2022-03-28 18:19:28 -06:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2022-03-17 23:18:22 +00:00
|
|
|
github.com/stretchr/testify v1.7.1
|
2022-02-28 12:00:52 -06:00
|
|
|
github.com/tabbed/pqtype v0.1.1
|
2022-02-16 10:34:38 -08:00
|
|
|
github.com/unrolled/secure v1.10.0
|
2022-04-19 08:48:13 -05:00
|
|
|
go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1
|
2022-05-19 17:43:07 -05:00
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.7.0
|
2022-01-26 20:14:37 -06:00
|
|
|
go.uber.org/atomic v1.9.0
|
2022-01-05 09:20:56 -06:00
|
|
|
go.uber.org/goleak v1.1.12
|
2022-05-16 08:30:53 -05:00
|
|
|
golang.org/x/crypto v0.0.0-20220507011949-2cf3adece122
|
2022-04-14 13:23:20 -04:00
|
|
|
golang.org/x/exp v0.0.0-20220414153411-bcd21879b8fd
|
2022-04-18 08:50:32 -05:00
|
|
|
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3
|
2022-05-02 17:49:02 +00:00
|
|
|
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
|
2022-04-25 09:28:09 -05:00
|
|
|
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
|
2022-03-22 13:17:50 -06:00
|
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
2022-05-16 08:32:25 -05:00
|
|
|
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6
|
2022-04-11 19:17:18 -05:00
|
|
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
|
2022-04-25 13:30:39 -05:00
|
|
|
golang.org/x/text v0.3.7
|
2022-04-28 11:59:14 -05:00
|
|
|
golang.org/x/tools v0.1.10
|
2022-04-25 09:28:09 -05:00
|
|
|
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f
|
2022-05-16 08:32:25 -05:00
|
|
|
google.golang.org/api v0.79.0
|
2022-03-22 15:37:53 +00:00
|
|
|
google.golang.org/protobuf v1.28.0
|
2022-05-02 11:36:51 -05:00
|
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0
|
2022-05-20 11:29:10 -04:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
2022-04-25 13:57:59 -05:00
|
|
|
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9
|
2022-02-01 16:10:11 -06:00
|
|
|
nhooyr.io/websocket v1.8.7
|
2022-03-21 23:41:57 +00:00
|
|
|
storj.io/drpc v0.0.30
|
2022-01-05 09:20:56 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/Azure/go-ntlmssp v0.0.0-20200615164410-66371956d46c // indirect
|
2022-02-21 14:36:29 -06:00
|
|
|
github.com/Microsoft/go-winio v0.5.2 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/OneOfOne/xxhash v1.2.8 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/agext/levenshtein v1.2.3 // indirect
|
|
|
|
github.com/alecthomas/chroma v0.10.0 // indirect
|
2022-02-18 23:13:32 -06:00
|
|
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
|
2022-01-08 11:24:02 -06:00
|
|
|
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 // indirect
|
2022-05-03 07:48:02 -05:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2022-05-19 17:43:07 -05:00
|
|
|
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
|
|
github.com/charmbracelet/bubbles v0.10.3 // indirect
|
|
|
|
github.com/charmbracelet/bubbletea v0.20.0 // indirect
|
|
|
|
github.com/clbanning/mxj/v2 v2.5.5 // indirect
|
|
|
|
github.com/containerd/console v1.0.3 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/containerd/continuity v0.2.2 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/coreos/go-oidc v2.2.1+incompatible // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2022-01-05 11:18:29 -06:00
|
|
|
github.com/dlclark/regexp2 v1.4.0 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/docker/cli v20.10.13+incompatible // indirect
|
|
|
|
github.com/docker/docker v20.10.13+incompatible // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
|
|
github.com/docker/go-units v0.4.0 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/fatedier/beego v0.0.0-20171024143340-6c6a4f5bd5eb // indirect
|
|
|
|
github.com/fatedier/kcp-go v2.0.4-0.20190803094908-fe8645b0a904+incompatible // indirect
|
|
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
2022-05-19 17:43:07 -05:00
|
|
|
github.com/gin-gonic/gin v1.7.0 // indirect
|
|
|
|
github.com/go-chi/chi v1.5.4
|
|
|
|
github.com/go-logr/logr v1.2.3 // indirect
|
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2022-01-20 07:46:51 -06:00
|
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/gobwas/glob v0.2.3 // indirect
|
|
|
|
github.com/gobwas/ws v1.1.0 // indirect
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2022-01-13 16:55:28 -06:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
2022-01-20 07:46:51 -06:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/golang/snappy v0.0.4 // indirect
|
2022-05-02 17:49:02 +00:00
|
|
|
github.com/google/go-cmp v0.5.8 // indirect
|
2022-04-23 17:58:57 -05:00
|
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/gorilla/mux v1.8.0 // indirect
|
2022-05-19 17:43:07 -05:00
|
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
2022-01-08 11:24:02 -06:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
2022-01-13 16:55:28 -06:00
|
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
2022-03-28 18:19:28 -06:00
|
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/klauspost/compress v1.15.0 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/klauspost/cpuid/v2 v2.0.6 // indirect
|
|
|
|
github.com/klauspost/reedsolomon v1.9.15 // indirect
|
2022-04-11 19:17:18 -05:00
|
|
|
github.com/kr/fs v0.1.0 // indirect
|
2022-01-20 07:46:51 -06:00
|
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
2022-01-13 16:55:28 -06:00
|
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
2022-05-03 07:48:02 -05:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
|
2022-03-28 18:19:28 -06:00
|
|
|
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/miekg/dns v1.1.45 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/muesli/ansi v0.0.0-20211031195517-c9f0611b6c70 // indirect
|
|
|
|
github.com/muesli/reflow v0.3.0 // indirect
|
|
|
|
github.com/muesli/termenv v0.11.1-0.20220212125758-44cd13922739 // indirect
|
2022-05-20 10:51:06 -05:00
|
|
|
github.com/nhatthm/otelsql v0.3.0
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/niklasfasching/go-org v1.6.2 // indirect
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
|
|
github.com/opencontainers/image-spec v1.0.2 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/opencontainers/runc v1.1.0 // indirect
|
2022-04-18 08:50:32 -05:00
|
|
|
github.com/pelletier/go-toml/v2 v2.0.0-beta.7.0.20220408132554-2377ac4bc04c // indirect
|
2022-05-16 08:30:53 -05:00
|
|
|
github.com/pion/dtls/v2 v2.1.4 // indirect
|
2022-04-25 09:43:40 -05:00
|
|
|
github.com/pion/ice/v2 v2.2.6 // indirect
|
2022-05-16 08:30:53 -05:00
|
|
|
github.com/pion/interceptor v0.1.11 // indirect
|
2022-01-05 11:18:29 -06:00
|
|
|
github.com/pion/mdns v0.0.5 // indirect
|
|
|
|
github.com/pion/randutil v0.1.0 // indirect
|
|
|
|
github.com/pion/rtcp v1.2.9 // indirect
|
2022-04-18 08:50:11 -05:00
|
|
|
github.com/pion/rtp v1.7.13 // indirect
|
2022-01-05 11:18:29 -06:00
|
|
|
github.com/pion/sctp v1.8.2 // indirect
|
2022-05-16 08:30:53 -05:00
|
|
|
github.com/pion/sdp/v3 v3.0.5 // indirect
|
|
|
|
github.com/pion/srtp/v2 v2.0.7 // indirect
|
2022-01-05 11:18:29 -06:00
|
|
|
github.com/pion/stun v0.3.5 // indirect
|
2022-04-22 15:49:43 -05:00
|
|
|
github.com/pires/go-proxyproto v0.6.2 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/pquerna/cachecontrol v0.1.0 // indirect
|
2022-05-03 07:48:02 -05:00
|
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
|
|
github.com/prometheus/common v0.32.1 // indirect
|
|
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/sirupsen/logrus v1.8.1 // indirect
|
2022-04-18 08:50:32 -05:00
|
|
|
github.com/spf13/afero v1.8.2 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/templexxx/cpufeat v0.0.0-20180724012125-cef66df7f161 // indirect
|
|
|
|
github.com/templexxx/xor v0.0.0-20191217153810-f85b25db303b // indirect
|
|
|
|
github.com/tjfoc/gmsm v1.4.1 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
|
|
|
|
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/yashtewari/glob-intersection v0.1.0 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/zclconf/go-cty v1.10.0 // indirect
|
2022-01-08 11:24:02 -06:00
|
|
|
github.com/zeebo/errs v1.2.2 // indirect
|
2022-03-07 17:39:00 -06:00
|
|
|
go.opencensus.io v0.23.0 // indirect
|
2022-05-19 17:43:07 -05:00
|
|
|
go.opentelemetry.io/otel v1.7.0
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.7.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.7.0
|
2022-05-20 10:51:06 -05:00
|
|
|
go.opentelemetry.io/otel/metric v0.30.0 // indirect
|
2022-05-19 17:43:07 -05:00
|
|
|
go.opentelemetry.io/otel/sdk v1.7.0
|
2022-05-20 10:51:06 -05:00
|
|
|
go.opentelemetry.io/otel/trace v1.7.0
|
2022-05-19 17:43:07 -05:00
|
|
|
go.opentelemetry.io/proto/otlp v0.16.0 // indirect
|
2022-04-27 17:04:51 -05:00
|
|
|
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
|
2022-01-20 07:46:51 -06:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2022-05-16 08:32:25 -05:00
|
|
|
google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3 // indirect
|
2022-05-02 17:36:02 +00:00
|
|
|
google.golang.org/grpc v1.46.0 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
gopkg.in/ini.v1 v1.62.0 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
|
|
)
|