forked from pdlan/filestash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
34 lines (31 loc) · 1.07 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
module github.com/mickael-kerjean/filestash
go 1.19
require (
github.com/cretz/bine v0.2.0
github.com/davidbyttow/govips/v2 v2.15.0
github.com/gorilla/mux v1.8.1
github.com/gorilla/websocket v1.5.3
github.com/h2non/bimg v1.1.9
github.com/kr/pty v1.1.8
github.com/mattn/go-sqlite3 v2.0.2+incompatible
// github.com/mickael-kerjean/net v0.0.0-20191120063050-2457c043ba06
github.com/mitchellh/hashstructure v1.1.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/sftp v1.13.7
github.com/tidwall/gjson v1.18.0
github.com/tidwall/sjson v1.2.5
golang.org/x/crypto v0.31.0
golang.org/x/image v0.23.0
golang.org/x/sync v0.10.0
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
)
require (
github.com/creack/pty v1.1.24 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/net v0.32.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
)