-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Naman Sood <mail@nsood.in>
- Loading branch information
1 parent
938c8de
commit 73a6699
Showing
4 changed files
with
68 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,37 @@ | ||
module github.com/tailscale-dev/vscode-tailscale | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/go-chi/chi/v5 v5.0.10 | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/mitchellh/go-ps v1.0.0 | ||
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 | ||
golang.org/x/sync v0.3.0 | ||
tailscale.com v1.44.0 | ||
tailscale.com v1.50.0 | ||
) | ||
|
||
require ( | ||
filippo.io/edwards25519 v1.0.0 // indirect | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/akutz/memconn v0.1.0 // indirect | ||
github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74 // indirect | ||
github.com/fxamacker/cbor/v2 v2.4.0 // indirect | ||
github.com/dblohm7/wingoes v0.0.0-20230830181946-9e486725665f // indirect | ||
github.com/fxamacker/cbor/v2 v2.5.0 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/hdevalence/ed25519consensus v0.1.0 // indirect | ||
github.com/josharian/native v1.1.1-0.20230202152459-5c7d0dd6ab86 // indirect | ||
github.com/jsimonetti/rtnetlink v1.3.3 // indirect | ||
github.com/jsimonetti/rtnetlink v1.3.5 // indirect | ||
github.com/mdlayher/netlink v1.7.2 // indirect | ||
github.com/mdlayher/socket v0.4.1 // indirect | ||
github.com/mdlayher/socket v0.5.0 // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
go4.org/mem v0.0.0-20220726221520-4f986261bf13 // indirect | ||
go4.org/netipx v0.0.0-20230303233057-f1b76eb4bb35 // indirect | ||
golang.org/x/crypto v0.10.0 // indirect | ||
golang.org/x/mod v0.11.0 // indirect | ||
golang.org/x/net v0.11.0 // indirect | ||
golang.org/x/sys v0.9.0 // indirect | ||
golang.org/x/text v0.10.0 // indirect | ||
golang.org/x/tools v0.10.0 // indirect | ||
go4.org/netipx v0.0.0-20230824141953-6213f710f925 // indirect | ||
golang.org/x/crypto v0.13.0 // indirect | ||
golang.org/x/mod v0.12.0 // indirect | ||
golang.org/x/net v0.15.0 // indirect | ||
golang.org/x/sys v0.12.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/tools v0.13.0 // indirect | ||
golang.zx2c4.com/wireguard/windows v0.5.3 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters