forked from SignTools/SignTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
52 lines (48 loc) · 1.85 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
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.6.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.6.0
github.com/knadh/koanf v1.5.0
github.com/labstack/echo/v4 v4.12.0
github.com/labstack/gommon v0.4.2
github.com/natefinch/atomic v1.0.1
github.com/pkg/errors v0.9.1
github.com/rs/zerolog v1.33.0
github.com/stretchr/testify v1.9.0
github.com/tus/tusd v1.13.0
github.com/ziflex/lecho/v2 v2.5.2
go.uber.org/atomic v1.11.0
golang.org/x/crypto v0.25.0
golang.org/x/oauth2 v0.21.0
gopkg.in/yaml.v3 v3.0.1
software.sslmate.com/src/go-pkcs12 v0.4.0
)
replace (
github.com/tus/tusd v1.13.0 => github.com/SignTools/tusd v0.0.0-20231108184537-0a8f5f25343e
software.sslmate.com/src/go-pkcs12 v0.4.0 => github.com/SignTools/go-pkcs12 v0.0.0-20231108183519-35ebb50631fc
)
require (
github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // 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.24.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/time v0.5.0 // indirect
)