-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
65 lines (60 loc) · 2.35 KB
/
go.mod
File metadata and controls
65 lines (60 loc) · 2.35 KB
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
56
57
58
59
60
61
62
63
64
65
module github.com/je4/zsync/v2
go 1.24
toolchain go1.24.2
require (
github.com/BurntSushi/toml v1.5.0
github.com/ProtonMail/go-crypto v1.3.0 // indirect
github.com/bluele/gcache v0.0.2
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-git/go-git/v5 v5.16.2
github.com/go-sql-driver/mysql v1.9.3
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.1
github.com/kevinburke/ssh_config v1.2.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/lib/pq v1.10.9
github.com/mash/go-accesslog v1.3.0
github.com/minio/md5-simd v1.1.2 // indirect
github.com/minio/minio-go/v7 v7.0.93
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
github.com/rs/xid v1.6.0 // indirect
github.com/sergi/go-diff v1.4.0 // indirect
github.com/xanzy/ssh-agent v0.3.3 // indirect
golang.org/x/crypto v0.39.0 // indirect
golang.org/x/net v0.41.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.26.0 // indirect
gopkg.in/resty.v1 v1.12.0
)
require (
emperror.dev/errors v0.8.1
github.com/je4/utils/v2 v2.0.60
github.com/rs/zerolog v1.34.0
)
require (
dario.cat/mergo v1.0.2 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/cloudflare/circl v1.6.1 // indirect
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
github.com/go-git/go-billy/v5 v5.6.2 // indirect
github.com/go-ini/ini v1.67.0 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/klauspost/compress v1.18.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/minio/crc64nvme v1.0.2 // indirect
github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c // indirect
github.com/pjbgf/sha1cd v0.3.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/skeema/knownhosts v1.3.1 // indirect
github.com/tinylib/msgp v1.3.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
)