Skip to content

Commit a611eed

Browse files
committed
Update readme
1 parent 3a0e891 commit a611eed

File tree

3 files changed

+61
-41
lines changed

3 files changed

+61
-41
lines changed

cmd/wush/receive.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func receiveCmd() *serpent.Command {
3232
verbose bool
3333
)
3434
return &serpent.Command{
35-
Use: "receive",
35+
Use: "serve",
3636
Aliases: []string{"host"},
3737
Short: "Run the wush server.",
3838
Long: "Runs the wush server. Allows other wush CLIs to connect to this computer.",

go.mod

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/charmbracelet/huh v0.4.2
1313
github.com/coder/coder/v2 v2.14.1
1414
github.com/coder/pretty v0.0.0-20230908205945-e89ba86370e0
15-
github.com/coder/serpent v0.7.1-0.20240823180923-556f4d27e175
15+
github.com/coder/serpent v0.8.0
1616
github.com/go-chi/chi/v5 v5.1.0
1717
github.com/google/uuid v1.6.0
1818
github.com/klauspost/compress v1.17.9
@@ -26,11 +26,11 @@ require (
2626
github.com/spf13/afero v1.11.0
2727
github.com/valyala/fasthttp v1.55.0
2828
go4.org/mem v0.0.0-20220726221520-4f986261bf13
29-
golang.org/x/crypto v0.25.0
30-
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225
31-
golang.org/x/net v0.27.0
29+
golang.org/x/crypto v0.26.0
30+
golang.org/x/exp v0.0.0-20240823005443-9b4947da3948
31+
golang.org/x/net v0.28.0
3232
golang.org/x/sys v0.24.0
33-
golang.org/x/term v0.22.0
33+
golang.org/x/term v0.23.0
3434
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9
3535
tailscale.com v1.70.0
3636
)
@@ -93,7 +93,7 @@ require (
9393
github.com/fatih/color v1.17.0 // indirect
9494
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
9595
github.com/gaissmai/bart v0.11.1 // indirect
96-
github.com/gliderlabs/ssh v0.3.4 // indirect
96+
github.com/gliderlabs/ssh v0.3.7 // indirect
9797
github.com/go-jose/go-jose/v4 v4.0.2 // indirect
9898
github.com/go-json-experiment/json v0.0.0-20231102232822-2e55bd4e08b0 // indirect
9999
github.com/go-logr/logr v1.4.2 // indirect
@@ -134,7 +134,7 @@ require (
134134
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
135135
github.com/mattn/go-colorable v0.1.13 // indirect
136136
github.com/mattn/go-localereader v0.0.1 // indirect
137-
github.com/mattn/go-runewidth v0.0.15 // indirect
137+
github.com/mattn/go-runewidth v0.0.16 // indirect
138138
github.com/mdlayher/genetlink v1.3.2 // indirect
139139
github.com/mdlayher/netlink v1.7.2 // indirect
140140
github.com/mdlayher/sdnotify v1.0.0 // indirect
@@ -153,7 +153,7 @@ require (
153153
github.com/pierrec/lz4/v4 v4.1.21 // indirect
154154
github.com/pion/dtls/v3 v3.0.1 // indirect
155155
github.com/pion/logging v0.2.2 // indirect
156-
github.com/pion/transport/v2 v2.0.0 // indirect
156+
github.com/pion/transport/v2 v2.2.10 // indirect
157157
github.com/pion/transport/v3 v3.0.7 // indirect
158158
github.com/pion/udp v0.1.4 // indirect
159159
github.com/pkg/errors v0.9.1 // indirect
@@ -167,6 +167,7 @@ require (
167167
github.com/robfig/cron/v3 v3.0.1 // indirect
168168
github.com/safchain/ethtool v0.3.0 // indirect
169169
github.com/secure-systems-lab/go-securesystemslib v0.7.0 // indirect
170+
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
170171
github.com/spaolacci/murmur3 v1.1.0 // indirect
171172
github.com/spf13/pflag v1.0.5 // indirect
172173
github.com/tailscale/certstore v0.1.1-0.20231202035212-d3fa0460f47e // indirect
@@ -193,21 +194,21 @@ require (
193194
github.com/zclconf/go-cty v1.15.0 // indirect
194195
github.com/zeebo/errs v1.3.0 // indirect
195196
go.nhat.io/otelsql v0.13.0 // indirect
196-
go.opentelemetry.io/otel v1.28.0 // indirect
197+
go.opentelemetry.io/otel v1.29.0 // indirect
197198
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
198199
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 // indirect
199-
go.opentelemetry.io/otel/metric v1.28.0 // indirect
200+
go.opentelemetry.io/otel/metric v1.29.0 // indirect
200201
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
201-
go.opentelemetry.io/otel/trace v1.28.0 // indirect
202+
go.opentelemetry.io/otel/trace v1.29.0 // indirect
202203
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
203204
go.uber.org/atomic v1.11.0 // indirect
204205
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
205-
golang.org/x/mod v0.19.0 // indirect
206+
golang.org/x/mod v0.20.0 // indirect
206207
golang.org/x/oauth2 v0.21.0 // indirect
207208
golang.org/x/sync v0.8.0 // indirect
208-
golang.org/x/text v0.16.0 // indirect
209+
golang.org/x/text v0.17.0 // indirect
209210
golang.org/x/time v0.5.0 // indirect
210-
golang.org/x/tools v0.23.0 // indirect
211+
golang.org/x/tools v0.24.0 // indirect
211212
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
212213
golang.zx2c4.com/wireguard/windows v0.5.3 // indirect
213214
google.golang.org/appengine v1.6.8 // indirect

0 commit comments

Comments
 (0)