-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
34 lines (31 loc) · 1.15 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 oneway-filesync
go 1.19
require (
github.com/BurntSushi/toml v1.2.1
github.com/danlapid/socketbuffer v1.0.0
github.com/glebarez/sqlite v1.6.0
github.com/klauspost/reedsolomon v1.11.5
github.com/rjeczalik/notify v0.9.3
github.com/sirupsen/logrus v1.9.0
github.com/yeka/zip v0.0.0-20180914125537-d046722c6feb
github.com/zhuangsirui/binpacker v2.0.0+incompatible
golang.org/x/time v0.3.0
gorm.io/driver/sqlite v1.4.4
gorm.io/gorm v1.24.3
)
require (
github.com/glebarez/go-sqlite v1.20.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/klauspost/cpuid/v2 v2.1.1 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-sqlite3 v1.14.15 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
modernc.org/libc v1.21.5 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.4.0 // indirect
modernc.org/sqlite v1.20.0 // indirect
)