2023-08-18 13:55:43 -05:00
|
|
|
module github.com/coder/coder/v2
|
2022-01-05 08:48:56 -06:00
|
|
|
|
2024-03-15 11:24:38 -05:00
|
|
|
go 1.21.4
|
2022-01-05 09:20:56 -06:00
|
|
|
|
2024-04-02 09:14:38 -05:00
|
|
|
// Required until a v3 of chroma is created to lazily initialize all XML files.
|
|
|
|
// None of our dependencies seem to use the registries anyways, so this
|
|
|
|
// should be fine...
|
|
|
|
// See: https://github.com/kylecarbs/chroma/commit/9e036e0631f38ef60de5ee8eec7a42e9cb7da423
|
|
|
|
replace github.com/alecthomas/chroma/v2 => github.com/kylecarbs/chroma/v2 v2.0.0-20240401211003-9e036e0631f3
|
|
|
|
|
2024-04-01 15:31:26 -05:00
|
|
|
// Required until https://github.com/go-playground/validator/pull/1246 is merged.
|
2024-04-02 09:14:38 -05:00
|
|
|
replace github.com/go-playground/validator/v10 => github.com/kylecarbs/validator/v10 v10.0.0-20240401214733-cebbc77c0ece
|
2024-04-01 15:31:26 -05: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-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
|
|
|
|
2023-03-30 11:19:11 -05:00
|
|
|
// See https://github.com/kylecarbs/tview/commit/8464256e10a1e85074c7ef9c80346baa60e9ede6
|
2022-03-22 13:17:50 -06:00
|
|
|
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-08-31 20:09:44 -05:00
|
|
|
// https://github.com/tcnksm/go-httpstat/pull/29
|
2023-08-01 08:50:43 -07:00
|
|
|
replace github.com/tcnksm/go-httpstat => github.com/coder/go-httpstat v0.0.0-20230801153223-321c88088322
|
2022-08-31 20:09:44 -05:00
|
|
|
|
2023-03-30 10:58:56 -05:00
|
|
|
// See https://github.com/dlclark/regexp2/issues/63
|
|
|
|
replace github.com/dlclark/regexp2 => github.com/dlclark/regexp2 v1.7.0
|
|
|
|
|
2022-08-31 20:09:44 -05:00
|
|
|
// There are a few minor changes we make to Tailscale that we're slowly upstreaming. Compare here:
|
|
|
|
// https://github.com/tailscale/tailscale/compare/main...coder:tailscale:main
|
2024-05-01 04:45:25 -07:00
|
|
|
replace tailscale.com => github.com/coder/tailscale v1.1.1-0.20240501025849-d8a4721c3162
|
2023-08-09 14:50:26 -05:00
|
|
|
|
2023-10-04 23:47:01 -05:00
|
|
|
// Fixes a race-condition in coder/wgtunnel.
|
|
|
|
// Upstream PR: https://github.com/WireGuard/wireguard-go/pull/85
|
|
|
|
replace golang.zx2c4.com/wireguard => github.com/coder/wireguard-go v0.0.0-20230920225835-b7d43c468619
|
|
|
|
|
2023-08-09 14:50:26 -05:00
|
|
|
// This is replaced to include a fix that causes a deadlock when closing the
|
|
|
|
// wireguard network.
|
|
|
|
// The branch used is from https://github.com/coder/wireguard-go/tree/colin/tailscale
|
|
|
|
// It is based on https://github.com/tailscale/wireguard-go/tree/tailscale, but
|
|
|
|
// includes the upstream fix https://github.com/WireGuard/wireguard-go/commit/b7cd547315bed421a648d0a0f1ee5a0fc1b1151e
|
|
|
|
replace github.com/tailscale/wireguard-go => github.com/coder/wireguard-go v0.0.0-20230807234434-d825b45ccbf5
|
2022-08-31 20:09:44 -05:00
|
|
|
|
2023-07-17 19:09:26 +03:00
|
|
|
// Use our tempfork of gvisor that includes a fix for TCP connection stalls:
|
|
|
|
// https://github.com/coder/coder/issues/7388
|
|
|
|
// The basis for this fork is: gvisor.dev/gvisor v0.0.0-20230504175454-7b0a1988a28f
|
|
|
|
// This is the same version as used by Tailscale `main`:
|
|
|
|
// https://github.com/tailscale/tailscale/blob/c19b5bfbc391637b11c2acb3c725909a0046d849/go.mod#L88
|
|
|
|
//
|
|
|
|
// Latest gvisor otherwise has refactored packages and is currently incompatible with
|
|
|
|
// Tailscale, to remove our tempfork this needs to be addressed.
|
|
|
|
replace gvisor.dev/gvisor => github.com/coder/gvisor v0.0.0-20230714132058-be2e4ac102c3
|
|
|
|
|
2022-09-12 19:27:51 +03:00
|
|
|
// Switch to our fork that imports fixes from http://github.com/tailscale/ssh.
|
|
|
|
// See: https://github.com/coder/coder/issues/3371
|
|
|
|
//
|
|
|
|
// Note that http://github.com/tailscale/ssh has been merged into the Tailscale
|
|
|
|
// repo as tailscale.com/tempfork/gliderlabs/ssh, however, we can't replace the
|
|
|
|
// subpath and it includes changes to golang.org/x/crypto/ssh as well which
|
|
|
|
// makes importing it directly a bit messy.
|
2023-11-29 13:19:49 +02:00
|
|
|
replace github.com/gliderlabs/ssh => github.com/coder/ssh v0.0.0-20231128192721-70855dedb788
|
2022-09-12 19:27:51 +03:00
|
|
|
|
2023-02-21 00:15:25 -06:00
|
|
|
// Waiting on https://github.com/imulab/go-scim/pull/95 to merge.
|
|
|
|
replace github.com/imulab/go-scim/pkg/v2 => github.com/coder/go-scim/pkg/v2 v2.0.0-20230221055123-1d63c1222136
|
|
|
|
|
2023-12-12 17:42:03 +02:00
|
|
|
// Waiting on https://github.com/pkg/sftp/pull/567
|
|
|
|
// Fixes https://github.com/coder/coder/issues/6685
|
|
|
|
replace github.com/pkg/sftp => github.com/mafredri/sftp v1.13.6-0.20231212144145-8218e927edb0
|
|
|
|
|
2022-01-05 09:20:56 -06:00
|
|
|
require (
|
2024-01-30 07:44:47 +04:00
|
|
|
cdr.dev/slog v1.6.2-0.20240126064726-20367d4aede6
|
2024-04-22 08:23:22 -04:00
|
|
|
cloud.google.com/go/compute/metadata v0.3.0
|
2022-06-29 16:49:24 -05:00
|
|
|
github.com/AlecAivazis/survey/v2 v2.3.5
|
2023-02-22 19:53:21 -06:00
|
|
|
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
|
2022-11-04 12:32:55 -05:00
|
|
|
github.com/adrg/xdg v0.4.0
|
2024-03-18 11:25:52 -04:00
|
|
|
github.com/ammario/tlru v0.4.0
|
2024-01-15 17:44:48 +03:00
|
|
|
github.com/andybalholm/brotli v1.1.0
|
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
|
2024-04-23 02:27:32 +00:00
|
|
|
github.com/aws/smithy-go v1.20.2
|
2023-08-13 10:10:58 -05:00
|
|
|
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816
|
2024-04-01 20:48:52 +00:00
|
|
|
github.com/bramvdbogaerde/go-scp v1.4.0
|
2022-02-10 08:33:27 -06:00
|
|
|
github.com/briandowns/spinner v1.18.1
|
2022-11-04 12:32:55 -05:00
|
|
|
github.com/cakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5
|
2024-04-01 13:02:23 -05:00
|
|
|
github.com/cenkalti/backoff/v4 v4.3.0
|
2024-04-01 18:13:51 +00:00
|
|
|
github.com/charmbracelet/glamour v0.7.0
|
2023-11-14 14:12:58 -06:00
|
|
|
github.com/chromedp/cdproto v0.0.0-20230802225258-3cf4e6d46a89
|
|
|
|
github.com/chromedp/chromedp v0.9.2
|
2023-06-13 16:50:45 -05:00
|
|
|
github.com/cli/safeexec v1.0.1
|
2023-03-23 17:42:20 -05:00
|
|
|
github.com/coder/flog v1.1.0
|
2023-09-21 14:33:13 -04:00
|
|
|
github.com/coder/pretty v0.0.0-20230908205945-e89ba86370e0
|
2023-11-14 10:00:07 -06:00
|
|
|
github.com/coder/retry v1.5.1
|
2024-04-22 08:23:35 -04:00
|
|
|
github.com/coder/terraform-provider-coder v0.21.0
|
2023-11-28 02:19:40 +10:00
|
|
|
github.com/coder/wgtunnel v0.1.13-0.20231127054351-578bfff9b92a
|
2024-03-26 12:45:42 -05:00
|
|
|
github.com/coreos/go-oidc/v3 v3.10.0
|
2022-03-24 09:07:33 -06:00
|
|
|
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
|
2024-01-18 01:36:47 +10:00
|
|
|
github.com/creack/pty v1.1.21
|
2023-06-14 21:52:01 +10:00
|
|
|
github.com/dave/dst v0.27.2
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
|
2024-04-08 10:30:32 -05:00
|
|
|
github.com/elastic/go-sysinfo v1.14.0
|
2023-11-06 18:06:02 +03:00
|
|
|
github.com/fatih/color v1.16.0
|
2022-05-09 21:38:20 -05:00
|
|
|
github.com/fatih/structs v1.1.0
|
2022-08-18 02:28:22 +10:00
|
|
|
github.com/fatih/structtag v1.2.0
|
2024-03-11 00:16:16 +03:00
|
|
|
github.com/fergusstrange/embedded-postgres v1.26.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
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/go-chi/chi/v5 v5.0.10
|
2023-05-23 15:20:22 -04:00
|
|
|
github.com/go-chi/cors v1.2.1
|
2024-03-07 16:57:21 +05:00
|
|
|
github.com/go-chi/httprate v0.9.0
|
2022-01-13 16:55:28 -06:00
|
|
|
github.com/go-chi/render v1.0.1
|
2024-03-11 00:15:52 +03:00
|
|
|
github.com/go-jose/go-jose/v3 v3.0.3
|
2024-01-15 14:08:28 +03:00
|
|
|
github.com/go-logr/logr v1.4.1
|
2022-06-30 19:11:13 -05:00
|
|
|
github.com/go-ping/ping v1.1.0
|
2024-03-07 16:57:12 +05:00
|
|
|
github.com/go-playground/validator/v10 v10.19.0
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/gofrs/flock v0.8.1
|
2024-04-24 13:39:52 +00:00
|
|
|
github.com/gohugoio/hugo v0.125.3
|
2023-02-21 00:15:25 -06:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.5.0
|
2024-01-05 09:42:53 -06:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.17.0
|
2023-10-13 13:27:22 +00:00
|
|
|
github.com/google/go-cmp v0.6.0
|
2022-04-23 17:58:57 -05:00
|
|
|
github.com/google/go-github/v43 v43.0.1-0.20220414155304-00e42332e405
|
2024-01-30 00:36:01 +03:00
|
|
|
github.com/google/uuid v1.6.0
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
2022-06-17 11:51:46 -05:00
|
|
|
github.com/hashicorp/go-reap v0.0.0-20170704170343-bf58d8a43e7b
|
2022-07-11 18:06:28 +00:00
|
|
|
github.com/hashicorp/go-version v1.6.0
|
2024-02-23 13:41:58 -06:00
|
|
|
github.com/hashicorp/hc-install v0.6.3
|
2022-01-08 11:24:02 -06:00
|
|
|
github.com/hashicorp/terraform-config-inspect v0.0.0-20211115214459-90acf1ca460f
|
2024-01-23 09:46:11 +03:00
|
|
|
github.com/hashicorp/terraform-json v0.21.0
|
2023-06-04 07:30:36 +03:00
|
|
|
github.com/hashicorp/yamux v0.1.1
|
2023-04-24 14:53:57 +04:00
|
|
|
github.com/hinshun/vt10x v0.0.0-20220301184237-5011da428d02
|
2022-09-20 15:16:26 -05:00
|
|
|
github.com/imulab/go-scim/pkg/v2 v2.2.0
|
2024-01-05 16:51:19 +03:00
|
|
|
github.com/jedib0t/go-pretty/v6 v6.5.0
|
2024-04-29 19:54:40 +03:00
|
|
|
github.com/jmoiron/sqlx v1.4.0
|
2022-01-19 11:55:06 -06:00
|
|
|
github.com/justinas/nosurf v1.1.1
|
2023-11-14 14:12:58 -06:00
|
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
|
2022-02-10 08:33:27 -06:00
|
|
|
github.com/kirsle/configdir v0.0.0-20170128060238-e45d2f54772f
|
2024-02-22 11:59:29 +05:00
|
|
|
github.com/klauspost/compress v1.17.6
|
2023-08-15 13:40:03 -05:00
|
|
|
github.com/lib/pq v1.10.9
|
2023-10-27 22:41:33 +03:00
|
|
|
github.com/mattn/go-isatty v0.0.20
|
2022-06-15 13:12:17 -05:00
|
|
|
github.com/mitchellh/go-wordwrap v1.0.1
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
|
2024-04-29 19:54:27 +03:00
|
|
|
github.com/moby/moby v26.1.0+incompatible
|
2023-08-01 10:26:52 -05:00
|
|
|
github.com/muesli/termenv v0.15.2
|
2023-10-30 21:08:41 +00:00
|
|
|
github.com/open-policy-agent/opa v0.58.0
|
2023-06-05 09:52:26 -05:00
|
|
|
github.com/ory/dockertest/v3 v3.10.0
|
2024-03-15 11:24:38 -05:00
|
|
|
github.com/pion/udp v0.1.4
|
2022-02-18 08:23:49 -08:00
|
|
|
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
|
2022-06-08 11:45:29 +03:00
|
|
|
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e
|
2024-01-08 15:31:09 +03:00
|
|
|
github.com/pkg/sftp v1.13.6
|
2024-01-08 17:07:56 +03:00
|
|
|
github.com/prometheus/client_golang v1.18.0
|
2024-02-22 11:59:17 +05:00
|
|
|
github.com/prometheus/client_model v0.6.0
|
2024-02-21 11:36:52 +05:00
|
|
|
github.com/prometheus/common v0.47.0
|
2022-05-23 22:45:40 +00:00
|
|
|
github.com/quasilyte/go-ruleguard/dsl v0.3.21
|
2022-04-11 19:17:18 -05:00
|
|
|
github.com/robfig/cron/v3 v3.0.1
|
2024-01-02 20:46:18 +02:00
|
|
|
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
|
2024-01-08 15:31:09 +03:00
|
|
|
github.com/spf13/afero v1.11.0
|
2022-03-28 18:19:28 -06:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2023-10-02 10:06:50 -05:00
|
|
|
github.com/sqlc-dev/pqtype v0.3.0
|
2024-03-18 11:03:45 +03:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2023-03-30 11:46:58 -05:00
|
|
|
github.com/swaggo/http-swagger/v2 v2.0.1
|
2023-09-04 15:28:39 +03:00
|
|
|
github.com/swaggo/swag v1.16.2
|
2023-11-14 14:12:58 -06:00
|
|
|
github.com/tidwall/gjson v1.17.0
|
2024-03-18 11:25:35 -04:00
|
|
|
github.com/u-root/u-root v0.14.0
|
2024-01-08 16:15:53 +03:00
|
|
|
github.com/unrolled/secure v1.14.0
|
2024-02-22 11:59:29 +05:00
|
|
|
github.com/valyala/fasthttp v1.52.0
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/wagslane/go-password-validator v0.3.0
|
2022-04-19 08:48:13 -05:00
|
|
|
go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1
|
2024-03-18 11:03:45 +03:00
|
|
|
go.nhat.io/otelsql v0.13.0
|
2024-03-17 22:08:32 -05:00
|
|
|
go.opentelemetry.io/otel v1.24.0
|
2023-10-02 14:27:21 +00:00
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0
|
2024-03-17 22:08:32 -05:00
|
|
|
go.opentelemetry.io/otel/sdk v1.24.0
|
|
|
|
go.opentelemetry.io/otel/trace v1.24.0
|
2023-06-05 11:27:57 -05:00
|
|
|
go.uber.org/atomic v1.11.0
|
2023-10-31 16:53:29 +04:00
|
|
|
go.uber.org/goleak v1.2.1
|
2023-08-09 14:50:26 -05:00
|
|
|
go4.org/netipx v0.0.0-20230728180743-ad4cb58a6516
|
2024-04-08 10:31:09 -05:00
|
|
|
golang.org/x/crypto v0.22.0
|
2024-03-18 11:25:35 -04:00
|
|
|
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225
|
2024-04-08 10:46:16 -05:00
|
|
|
golang.org/x/mod v0.17.0
|
2024-04-08 10:31:09 -05:00
|
|
|
golang.org/x/net v0.24.0
|
2024-04-08 11:52:35 -05:00
|
|
|
golang.org/x/oauth2 v0.19.0
|
2024-04-08 10:30:47 -05:00
|
|
|
golang.org/x/sync v0.7.0
|
2024-04-08 15:27:46 +03:00
|
|
|
golang.org/x/sys v0.19.0
|
|
|
|
golang.org/x/term v0.19.0
|
2023-11-06 17:41:35 +03:00
|
|
|
golang.org/x/text v0.14.0
|
2024-04-08 10:46:16 -05:00
|
|
|
golang.org/x/tools v0.20.0
|
2024-02-26 21:18:19 +05:00
|
|
|
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028
|
2023-09-21 14:33:13 -04:00
|
|
|
golang.zx2c4.com/wireguard v0.0.0-20230704135630-469159ecf7d1
|
2024-04-29 16:54:20 +00:00
|
|
|
google.golang.org/api v0.176.1
|
2024-04-22 08:23:22 -04:00
|
|
|
google.golang.org/grpc v1.63.2
|
2024-03-17 16:12:51 +03:00
|
|
|
google.golang.org/protobuf v1.33.0
|
2024-03-17 22:08:32 -05:00
|
|
|
gopkg.in/DataDog/dd-trace-go.v1 v1.61.0
|
2023-05-01 11:15:38 -05:00
|
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
2022-06-06 09:38:23 -05:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2023-08-09 14:50:26 -05:00
|
|
|
gvisor.dev/gvisor v0.0.0-20230504175454-7b0a1988a28f
|
2022-02-01 16:10:11 -06:00
|
|
|
nhooyr.io/websocket v1.8.7
|
2024-03-12 03:43:01 +00:00
|
|
|
storj.io/drpc v0.0.33
|
2023-08-09 14:50:26 -05:00
|
|
|
tailscale.com v1.46.1
|
2022-10-21 17:08:23 -05:00
|
|
|
)
|
2022-10-06 22:38:22 +10:00
|
|
|
|
2024-01-04 19:35:56 -05:00
|
|
|
require go.uber.org/mock v0.4.0
|
|
|
|
|
2024-02-01 18:01:25 +01:00
|
|
|
require (
|
|
|
|
github.com/benbjohnson/clock v1.3.5
|
2024-03-20 13:14:43 -04:00
|
|
|
github.com/coder/serpent v0.7.0
|
2024-02-01 18:01:25 +01:00
|
|
|
github.com/gomarkdown/markdown v0.0.0-20231222211730-1d6d20845b47
|
2024-04-24 22:59:22 +03:00
|
|
|
github.com/google/go-github/v61 v61.0.0
|
2024-02-01 18:01:25 +01:00
|
|
|
)
|
2024-01-11 09:11:43 +04:00
|
|
|
|
2024-02-26 21:18:19 +05:00
|
|
|
require (
|
2024-04-29 16:54:20 +00:00
|
|
|
cloud.google.com/go/auth v0.3.0 // indirect
|
|
|
|
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
|
2024-03-17 22:08:32 -05:00
|
|
|
github.com/DataDog/go-libddwaf/v2 v2.3.1 // indirect
|
2024-04-01 18:13:51 +00:00
|
|
|
github.com/alecthomas/chroma/v2 v2.13.0 // indirect
|
2024-03-20 13:14:43 -04:00
|
|
|
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.1 // indirect
|
2024-03-26 12:45:42 -05:00
|
|
|
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/mitchellh/hashstructure v1.1.0 // indirect
|
2024-03-15 11:24:38 -05:00
|
|
|
github.com/pion/transport/v2 v2.0.0 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/tdewolff/test v1.0.11-0.20240106005702-7de5f7df4739 // indirect
|
2024-03-18 10:45:52 +03:00
|
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
)
|
2024-01-30 00:36:23 +03:00
|
|
|
|
2022-01-05 09:20:56 -06:00
|
|
|
require (
|
2024-02-28 02:37:44 +05:00
|
|
|
cloud.google.com/go/logging v1.9.0 // indirect
|
2024-03-18 10:45:52 +03:00
|
|
|
cloud.google.com/go/longrunning v0.5.5 // indirect
|
2024-04-29 19:54:40 +03:00
|
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
2023-06-03 00:12:20 +03:00
|
|
|
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
|
2024-03-17 22:08:32 -05:00
|
|
|
github.com/DataDog/appsec-internal-go v1.4.1 // indirect
|
2023-10-27 22:41:33 +03:00
|
|
|
github.com/DataDog/datadog-agent/pkg/obfuscate v0.48.0 // indirect
|
2023-11-14 00:58:27 +03:00
|
|
|
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.48.1 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/DataDog/datadog-go/v5 v5.3.0 // indirect
|
|
|
|
github.com/DataDog/go-tuf v1.0.2-0.5.2 // indirect
|
|
|
|
github.com/DataDog/gostackparse v0.7.0 // indirect
|
|
|
|
github.com/DataDog/sketches-go v1.4.2 // indirect
|
2022-12-19 18:43:46 +01:00
|
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
2023-06-03 00:12:20 +03:00
|
|
|
github.com/Microsoft/go-winio v0.6.1 // 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
|
2024-02-23 13:41:58 -06:00
|
|
|
github.com/ProtonMail/go-crypto v1.1.0-alpha.0 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/agext/levenshtein v1.2.3 // indirect
|
2022-09-19 23:16:03 -05:00
|
|
|
github.com/agnivade/levenshtein v1.1.1 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/akutz/memconn v0.1.0 // indirect
|
|
|
|
github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74 // indirect
|
2022-02-18 23:13:32 -06:00
|
|
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
|
2023-09-07 19:06:28 +03:00
|
|
|
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/armon/go-radix v1.0.1-0.20221118154546-54df44f2176c // indirect
|
2024-04-23 02:27:32 +00:00
|
|
|
github.com/aws/aws-sdk-go-v2 v1.26.1
|
2024-03-20 13:14:43 -04:00
|
|
|
github.com/aws/aws-sdk-go-v2/config v1.27.7
|
|
|
|
github.com/aws/aws-sdk-go-v2/credentials v1.17.7 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.15.3 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/feature/rds/auth v1.4.3
|
2024-04-23 02:27:32 +00:00
|
|
|
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.5 // indirect
|
2024-03-20 13:14:43 -04:00
|
|
|
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.5 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/ssm v1.49.3 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/sso v1.20.2 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.2 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/sts v1.28.4 // indirect
|
2023-05-16 15:09:45 -04:00
|
|
|
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/aymerick/douceur v0.2.0 // indirect
|
2022-05-03 07:48:02 -05:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-06-26 10:48:39 -05:00
|
|
|
github.com/bep/godartsass v1.2.0 // indirect
|
2023-07-12 14:33:46 -05:00
|
|
|
github.com/bep/godartsass/v2 v2.0.0 // indirect
|
2023-06-13 16:50:45 -05:00
|
|
|
github.com/bep/golibsass v1.1.1 // indirect
|
2023-02-21 00:15:25 -06:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2023-11-14 14:12:58 -06:00
|
|
|
// In later at least v0.7.1, lipgloss changes its terminal detection
|
|
|
|
// which breaks most of our CLI golden files tests.
|
|
|
|
github.com/charmbracelet/lipgloss v0.8.0 // indirect
|
2023-10-02 10:40:17 +01:00
|
|
|
github.com/chromedp/sysutil v1.0.0 // indirect
|
2023-08-15 13:40:03 -05:00
|
|
|
github.com/clbanning/mxj/v2 v2.7.0 // indirect
|
2024-01-08 20:10:59 +03:00
|
|
|
github.com/cloudflare/circl v1.3.7 // indirect
|
2023-10-02 14:15:58 +00:00
|
|
|
github.com/containerd/continuity v0.4.2 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/coreos/go-iptables v0.6.0 // indirect
|
2024-03-18 14:43:58 +03:00
|
|
|
github.com/dlclark/regexp2 v1.11.0 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/docker/cli v23.0.5+incompatible // indirect
|
2024-03-21 02:14:30 +03:00
|
|
|
github.com/docker/docker v24.0.9+incompatible // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
2023-06-03 00:12:20 +03:00
|
|
|
github.com/docker/go-units v0.5.0 // indirect
|
2023-08-29 17:14:28 -05:00
|
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
2024-03-17 22:08:32 -05:00
|
|
|
github.com/ebitengine/purego v0.6.0-alpha.5 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/elastic/go-windows v1.0.0 // indirect
|
2024-03-18 10:45:52 +03:00
|
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
2022-08-31 20:09:44 -05:00
|
|
|
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
|
2024-02-13 17:54:13 +03:00
|
|
|
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
|
2023-09-21 14:33:13 -04:00
|
|
|
github.com/go-chi/hostrouter v0.2.0 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/go-ini/ini v1.67.0 // indirect
|
2022-05-19 17:43:07 -05:00
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/go-openapi/jsonpointer v0.20.2 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/go-openapi/jsonreference v0.20.2 // indirect
|
2022-12-19 18:43:46 +01:00
|
|
|
github.com/go-openapi/spec v0.20.6 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/go-openapi/swag v0.22.8 // indirect
|
2023-04-03 04:59:49 +00:00
|
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
2023-06-14 21:52:01 +10:00
|
|
|
github.com/go-test/deep v1.0.8 // 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
|
2023-10-02 10:40:17 +01:00
|
|
|
github.com/gobwas/httphead v0.1.0 // indirect
|
|
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
|
|
|
github.com/gobwas/ws v1.2.1 // 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
|
2024-04-08 15:57:52 +00:00
|
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
2023-03-22 06:13:48 -07:00
|
|
|
github.com/google/btree v1.1.2 // indirect
|
2023-04-03 00:31:39 -05:00
|
|
|
github.com/google/flatbuffers v23.1.21+incompatible // indirect
|
2022-04-23 17:58:57 -05:00
|
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/google/nftables v0.1.1-0.20230115205135-9aa6fdf5a28c // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/google/pprof v0.0.0-20230817174616-7a8ec2ada47b // indirect
|
2023-09-12 08:45:29 +00:00
|
|
|
github.com/google/s2a-go v0.1.7 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
|
2023-11-14 12:28:21 +00:00
|
|
|
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/gorilla/css v1.0.0 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/gorilla/mux v1.8.1 // indirect
|
2023-09-21 14:33:13 -04:00
|
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.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
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/hashicorp/go-hclog v1.5.0 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/hashicorp/go-uuid v1.0.3 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
|
2024-03-07 10:46:51 +00:00
|
|
|
github.com/hashicorp/hcl/v2 v2.20.0
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/hashicorp/logutils v1.0.0 // indirect
|
|
|
|
github.com/hashicorp/terraform-plugin-go v0.12.0 // indirect
|
|
|
|
github.com/hashicorp/terraform-plugin-log v0.7.0 // indirect
|
|
|
|
github.com/hashicorp/terraform-plugin-sdk/v2 v2.20.0 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/hdevalence/ed25519consensus v0.1.0 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/illarion/gonotify v1.0.1 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/imdario/mergo v0.3.15 // indirect
|
2024-01-18 01:36:47 +10:00
|
|
|
github.com/insomniacslk/dhcp v0.0.0-20231206064809-8c70d406f6d2 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
2022-12-19 18:43:46 +01:00
|
|
|
github.com/josharian/intern v1.0.0 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/josharian/native v1.1.1-0.20230202152459-5c7d0dd6ab86 // indirect
|
2024-01-18 01:36:47 +10:00
|
|
|
github.com/jsimonetti/rtnetlink v1.3.5 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/kortschak/wol v0.0.0-20200729010619-da482cc4850a // indirect
|
2022-04-11 19:17:18 -05:00
|
|
|
github.com/kr/fs v0.1.0 // indirect
|
2024-02-13 17:54:13 +03:00
|
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
2023-06-13 16:50:45 -05:00
|
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
2023-03-22 06:13:48 -07:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
2023-08-01 10:26:52 -05:00
|
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/mdlayher/genetlink v1.3.2 // indirect
|
|
|
|
github.com/mdlayher/netlink v1.7.2 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/mdlayher/sdnotify v1.0.0 // indirect
|
2024-01-18 01:36:47 +10:00
|
|
|
github.com/mdlayher/socket v0.5.0 // indirect
|
2022-03-28 18:19:28 -06:00
|
|
|
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
|
2024-04-01 18:13:51 +00:00
|
|
|
github.com/microcosm-cc/bluemonday v1.0.25 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/miekg/dns v1.1.55 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/mitchellh/go-ps v1.0.0 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
|
|
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
2023-06-03 00:12:20 +03:00
|
|
|
github.com/moby/term v0.5.0 // indirect
|
2023-07-12 14:33:46 -05:00
|
|
|
github.com/muesli/reflow v0.3.0 // indirect
|
2023-07-03 13:00:31 -05:00
|
|
|
github.com/niklasfasching/go-org v1.7.0 // indirect
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
2023-10-30 21:08:41 +00:00
|
|
|
github.com/opencontainers/image-spec v1.1.0-rc5 // indirect
|
2024-02-01 13:15:01 +03:00
|
|
|
github.com/opencontainers/runc v1.1.12 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/outcaste-io/ristretto v0.2.3 // indirect
|
2024-04-23 02:27:32 +00:00
|
|
|
github.com/pelletier/go-toml/v2 v2.2.1 // indirect
|
2023-08-29 17:14:28 -05:00
|
|
|
github.com/philhofer/fwd v1.1.2 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/pierrec/lz4/v4 v4.1.18 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
2024-01-08 17:07:56 +03:00
|
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
|
2023-09-21 14:33:13 -04:00
|
|
|
github.com/riandyrn/otelchi v0.5.1 // indirect
|
2023-08-29 17:14:28 -05:00
|
|
|
github.com/richardartoul/molecule v1.0.1-0.20221107223329-32cfee06a052 // indirect
|
2023-05-14 15:23:13 -05:00
|
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
2023-02-21 00:15:25 -06:00
|
|
|
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b // indirect
|
2023-08-29 17:14:28 -05:00
|
|
|
github.com/secure-systems-lab/go-securesystemslib v0.7.0 // indirect
|
2023-08-01 21:48:02 -05:00
|
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
2023-09-04 15:28:51 +03:00
|
|
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
2024-01-08 15:31:09 +03:00
|
|
|
github.com/spf13/cast v1.6.0 // indirect
|
2023-04-03 00:31:39 -05:00
|
|
|
github.com/swaggo/files/v2 v2.0.0 // indirect
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/tailscale/certstore v0.1.1-0.20220316223106-78d6e1c49d8d // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/tailscale/golang-x-crypto v0.0.0-20230713185742-f0b76a10a08e // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/tailscale/goupnp v1.0.1-0.20210804011211-c64d0f06ea05 // indirect
|
|
|
|
github.com/tailscale/netlink v1.1.1-0.20211101221916-cabfb018fe85 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/tailscale/wireguard-go v0.0.0-20230710185534-bb2c8f22eccf // indirect
|
2022-09-19 23:16:03 -05:00
|
|
|
github.com/tchap/go-patricia/v2 v2.3.1 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/tcnksm/go-httpstat v0.2.0 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/tdewolff/parse/v2 v2.7.12 // indirect
|
2023-10-09 23:02:16 -05:00
|
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
2023-08-29 17:14:28 -05:00
|
|
|
github.com/tinylib/msgp v1.1.8 // indirect
|
2024-03-18 11:25:35 -04:00
|
|
|
github.com/u-root/uio v0.0.0-20240209044354-b3d14b93376a // indirect
|
2023-08-01 21:48:02 -05:00
|
|
|
github.com/vishvananda/netlink v1.2.1-beta.2 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/vishvananda/netns v0.0.4 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
|
|
|
|
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
|
2023-08-29 17:14:28 -05:00
|
|
|
github.com/vmihailenco/tagparser v0.1.2 // indirect
|
2022-08-31 20:09:44 -05:00
|
|
|
github.com/x448/float16 v0.8.4 // 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-06-17 11:51:46 -05:00
|
|
|
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
|
2023-08-01 21:48:02 -05:00
|
|
|
github.com/yashtewari/glob-intersection v0.2.0 // indirect
|
2024-04-23 02:27:32 +00:00
|
|
|
github.com/yuin/goldmark v1.7.1 // indirect
|
2023-11-06 11:20:00 -06:00
|
|
|
github.com/yuin/goldmark-emoji v1.0.2 // indirect
|
2024-01-15 17:44:17 +03:00
|
|
|
github.com/zclconf/go-cty v1.14.1
|
2022-07-12 22:20:22 +03:00
|
|
|
github.com/zeebo/errs v1.3.0 // indirect
|
2022-12-01 18:08:12 +00:00
|
|
|
go.opencensus.io v0.24.0 // indirect
|
2023-09-21 14:33:13 -04:00
|
|
|
go.opentelemetry.io/contrib v1.19.0 // indirect
|
2024-03-17 22:08:32 -05:00
|
|
|
go.opentelemetry.io/otel/metric v1.24.0 // indirect
|
2023-08-31 00:12:42 +03:00
|
|
|
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
go4.org/mem v0.0.0-20220726221520-4f986261bf13 // indirect
|
2024-01-08 15:31:09 +03:00
|
|
|
golang.org/x/time v0.5.0 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
|
2023-09-21 14:33:13 -04:00
|
|
|
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6 // indirect
|
2022-09-12 22:32:51 -05:00
|
|
|
golang.zx2c4.com/wireguard/windows v0.5.3 // indirect
|
2023-10-26 11:36:10 +03:00
|
|
|
google.golang.org/appengine v1.6.8 // indirect
|
2024-04-08 15:57:52 +00:00
|
|
|
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
|
2024-04-23 02:27:32 +00:00
|
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect
|
2024-04-22 08:23:22 -04:00
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
howett.net/plist v1.0.0 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
inet.af/peercred v0.0.0-20210906144145-0893ea02156a // indirect
|
2023-10-30 21:08:41 +00:00
|
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
)
|