1
1
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 05:11:06 +02:00

use single reader (#155)

* dunno

* close file after finished

* fix debugging statements

* use single reader

* update deps
This commit is contained in:
Zack 2019-09-07 07:34:05 -07:00 committed by GitHub
parent fb658ccde2
commit bc6803eeef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 40 additions and 28 deletions

6
go.mod
View file

@ -1,6 +1,6 @@
module github.com/schollz/croc/v6
go 1.12
go 1.13
require (
github.com/OneOfOne/xxhash v1.2.5 // indirect
@ -20,9 +20,9 @@ require (
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/stretchr/testify v1.4.0
github.com/urfave/cli v1.21.0
golang.org/x/crypto v0.0.0-20190829043050-9756ffdc2472
golang.org/x/crypto v0.0.0-20190907121410-71b5226ff739
golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297 // indirect
golang.org/x/sys v0.0.0-20190904005037-43c01164e931 // indirect
golang.org/x/sys v0.0.0-20190904154756-749cb33beabd // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)