-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
34 lines (30 loc) · 1.14 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/linyows/warp
go 1.18
require (
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/go-sql-driver/mysql v1.7.1
github.com/oklog/ulid v1.3.1
)
require (
github.com/glebarez/go-sqlite v1.21.2
github.com/lestrrat-go/slack v0.0.0-20190827134815-1aaae719550a
)
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/lestrrat-go/pdebug v0.0.0-20180220043849-39f9a71bcabe // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect
golang.org/x/sys v0.7.0 // indirect
google.golang.org/appengine v1.4.0 // indirect
modernc.org/libc v1.24.1 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.6.0 // indirect
modernc.org/sqlite v1.26.0 // indirect
)