-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgo.mod
23 lines (19 loc) · 799 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/chen-keinan/go-archive-extractor
go 1.17
replace github.com/chen-keinan/gocpio => github.com/chen-keinan/gocpio v1.1.1
require (
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
github.com/chen-keinan/go-rpm v0.0.0-20160610194220-8ca34a68e949
github.com/chen-keinan/gocpio v0.0.0-00010101000000-000000000000
github.com/gen2brain/go-unarr v0.2.3
github.com/stretchr/testify v1.9.0
github.com/ulikunitz/xz v0.5.12
)
require (
github.com/cavaliercoder/badio v0.0.0-20160213150051-ce5280129e9e // indirect
github.com/cavaliercoder/go-rpm v0.0.0-20200122174316-8cb9fd9c31a8 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)