1
0
mirror of https://github.com/schollz/croc synced 2024-07-03 08:09:05 +00:00
croc/go.mod

43 lines
1.5 KiB
Modula-2
Raw Normal View History

2024-05-23 13:25:53 +00:00
module github.com/schollz/croc/v10
2021-04-17 16:42:11 +00:00
go 1.20
2021-04-17 16:42:11 +00:00
2018-09-22 03:51:43 +00:00
require (
2021-04-17 16:42:11 +00:00
github.com/cespare/xxhash v1.1.0
2023-02-07 13:44:17 +00:00
github.com/chzyer/readline v1.5.1
2021-04-17 16:42:11 +00:00
github.com/denisbrodbeck/machineid v1.0.1
2024-06-06 17:19:44 +00:00
github.com/kalafut/imohash v1.0.4
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
2021-04-17 16:42:11 +00:00
github.com/schollz/cli/v2 v2.2.1
github.com/schollz/logger v1.2.0
2023-01-12 18:23:50 +00:00
github.com/schollz/mnemonicode v1.0.2-0.20190421205639-63fa713ece0d
2022-11-19 04:55:07 +00:00
github.com/schollz/pake/v3 v3.0.5
2024-05-20 13:08:20 +00:00
github.com/schollz/peerdiscovery v1.7.3
github.com/schollz/progressbar/v3 v3.14.4
github.com/stretchr/testify v1.9.0
2024-06-06 17:19:44 +00:00
golang.org/x/crypto v0.24.0
golang.org/x/net v0.26.0
2024-02-06 22:33:01 +00:00
golang.org/x/time v0.5.0
)
2024-05-28 23:19:38 +00:00
require github.com/minio/highwayhash v1.0.2
require (
github.com/OneOfOne/xxhash v1.2.8 // indirect
2024-03-30 18:48:03 +00:00
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/magisterquis/connectproxy v0.0.0-20200725203833-3582e84f0c9b
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
2024-02-19 15:46:53 +00:00
github.com/rivo/uniseg v0.4.7 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
2024-03-11 22:49:09 +00:00
github.com/tscholl2/siec v0.0.0-20240310163802-c2c6f6198406 // indirect
2023-07-06 17:00:05 +00:00
github.com/twmb/murmur3 v1.1.8 // indirect
2024-06-06 17:19:44 +00:00
golang.org/x/sys v0.21.0 // indirect
golang.org/x/term v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2021-04-17 16:42:11 +00:00
)