forked from SignTools/SignTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
55 lines (51 loc) · 2.02 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module SignTools
go 1.18
require (
github.com/ViRb3/koanf-extra v0.0.0-20210725213601-654e724986c4
github.com/ViRb3/sling/v2 v2.0.2
github.com/elliotchance/orderedmap v1.5.0
github.com/eventials/go-tus v0.0.0-20220610120217-05d0564bb571
github.com/google/go-github/v33 v33.0.0
github.com/google/uuid v1.3.0
github.com/knadh/koanf v1.5.0
github.com/labstack/echo/v4 v4.10.2
github.com/labstack/gommon v0.4.0
github.com/natefinch/atomic v1.0.1
github.com/pkg/errors v0.9.1
github.com/rs/zerolog v1.29.1
github.com/stretchr/testify v1.8.2
github.com/tus/tusd v1.9.0
github.com/ziflex/lecho/v2 v2.5.2
go.uber.org/atomic v1.10.0
golang.org/x/crypto v0.6.0
golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2
gopkg.in/yaml.v3 v3.0.1
software.sslmate.com/src/go-pkcs12 v0.2.0
)
replace (
github.com/tus/tusd v1.9.0 => github.com/SignTools/tusd v1.9.1-0.20220709225843-156aff5c69cd
software.sslmate.com/src/go-pkcs12 v0.2.0 => github.com/SignTools/go-pkcs12 v0.0.0-20220420151050-a6465d7589ec
)
require (
github.com/bmizerany/pat v0.0.0-20210406213842-e4b6760bdd6f // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)