Skip to content

Commit a0a2f7f

Browse files
authored
Merge pull request #41 from skx/torrent
Removed the torrent sub-command.
2 parents 0318dd7 + 4fa92e8 commit a0a2f7f

File tree

5 files changed

+55
-1415
lines changed

5 files changed

+55
-1415
lines changed

README.md

-9
Original file line numberDiff line numberDiff line change
@@ -289,15 +289,6 @@ Ideal for https-servers, but also TLS-protected SMTP hosts, etc.
289289
Run a command, but kill it after the given number of seconds. The command is executed with a PTY so you can run interactive things such as `top`, `mutt`, etc.
290290

291291

292-
## torrent
293-
294-
Simple bittorrent client, which allows downloading a magnet-based torrent. For example to download an Ubuntu ISO:
295-
296-
```
297-
$ sysbox torrent magnet:?xt=urn:btih:ZOCMZQIPFFW7OLLMIC5HUB6BPCSDEOQU
298-
```
299-
300-
301292
## tree
302293

303294
Trivial command to display the contents of a filesystem, as a nested tree. This is similar to the standard `tree` command, without the nesting and ASCII graphics.

cmd_torrent.go

-139
This file was deleted.

go.mod

+18-26
Original file line numberDiff line numberDiff line change
@@ -3,44 +3,36 @@ module github.com/skx/sysbox
33
go 1.16
44

55
require (
6-
github.com/anacrolix/dht/v2 v2.17.0 // indirect
7-
github.com/anacrolix/envpprof v1.2.1 // indirect
8-
github.com/anacrolix/log v0.13.1 // indirect
9-
github.com/anacrolix/missinggo/v2 v2.6.0 // indirect
10-
github.com/anacrolix/multiless v0.3.0 // indirect
11-
github.com/anacrolix/torrent v1.41.1-0.20220309095723-02b6ee995497
12-
github.com/armon/go-metrics v0.3.10 // indirect
13-
github.com/bits-and-blooms/bitset v1.2.2 // indirect
14-
github.com/creack/pty v1.1.17
15-
github.com/dustin/go-humanize v1.0.0
16-
github.com/edsrzf/mmap-go v1.1.0 // indirect
17-
github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1
6+
github.com/armon/go-metrics v0.3.11 // indirect
7+
github.com/creack/pty v1.1.18
8+
github.com/gdamore/tcell/v2 v2.5.1
9+
github.com/google/btree v1.0.1 // indirect
1810
github.com/google/goexpect v0.0.0-20210430020637-ab937bf7fd6f
1911
github.com/google/goterm v0.0.0-20200907032337-555d40f16ae2 // indirect
20-
github.com/gorilla/websocket v1.5.0 // indirect
2112
github.com/hashicorp/errwrap v1.1.0 // indirect
2213
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
2314
github.com/hashicorp/go-msgpack v1.1.5 // indirect
2415
github.com/hashicorp/go-multierror v1.1.1 // indirect
2516
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
17+
github.com/hashicorp/go-uuid v1.0.1 // indirect
18+
github.com/hashicorp/golang-lru v0.5.4 // indirect
2619
github.com/hashicorp/memberlist v0.3.1
27-
github.com/mattn/go-isatty v0.0.14 // indirect
28-
github.com/miekg/dns v1.1.47 // indirect
20+
github.com/kr/pretty v0.3.0 // indirect
21+
github.com/miekg/dns v1.1.49 // indirect
2922
github.com/nightlyone/lockfile v1.0.0
3023
github.com/peterh/liner v1.2.2
31-
github.com/pion/webrtc/v3 v3.1.26 // indirect
3224
github.com/rivo/tview v0.0.0-20220307222120-9994674d60a8
33-
github.com/rs/dnscache v0.0.0-20211102005908-e0241e321417 // indirect
25+
github.com/rogpeppe/go-internal v1.8.0 // indirect
3426
github.com/skx/subcommands v0.9.2
35-
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect
36-
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
37-
golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8 // indirect
38-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
39-
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
27+
github.com/stretchr/testify v1.7.1 // indirect
28+
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 // indirect
29+
golang.org/x/net v0.0.0-20220517181318-183a9ca12b87
30+
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29 // indirect
31+
golang.org/x/sys v0.0.0-20220517195934-5e4e11fc645e // indirect
32+
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171
4033
golang.org/x/tools v0.1.10 // indirect
41-
google.golang.org/genproto v0.0.0-20220322021311-435b647f9ef2 // indirect
42-
google.golang.org/protobuf v1.28.0 // indirect
34+
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
35+
google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3 // indirect
36+
google.golang.org/grpc v1.46.2 // indirect
4337
gopkg.in/yaml.v2 v2.4.0
44-
modernc.org/sqlite v1.15.3 // indirect
45-
zombiezen.com/go/sqlite v0.9.2 // indirect
4638
)

0 commit comments

Comments
 (0)