hishtory/go.mod

33 lines
1.1 KiB
Modula-2
Raw Normal View History

2022-01-09 05:27:18 +01:00
module github.com/ddworken/hishtory
2022-01-09 20:00:53 +01:00
go 1.17
2022-01-09 05:27:18 +01:00
require (
2022-01-09 20:00:53 +01:00
github.com/fatih/color v1.13.0
github.com/google/uuid v1.3.0
github.com/lib/pq v1.10.2
2022-01-09 20:00:53 +01:00
github.com/rodaine/table v1.0.1
gorm.io/driver/postgres v1.3.1
gorm.io/driver/sqlite v1.2.6
gorm.io/gorm v1.23.1
2022-01-09 05:27:18 +01:00
)
2022-01-09 20:00:53 +01:00
require (
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.10.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.2.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.9.1 // indirect
github.com/jackc/pgx/v4 v4.14.1 // indirect
2022-01-09 20:00:53 +01:00
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.4 // indirect
2022-01-09 20:00:53 +01:00
github.com/mattn/go-colorable v0.1.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-sqlite3 v1.14.9 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
2022-01-09 20:00:53 +01:00
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
golang.org/x/text v0.3.7 // indirect
2022-01-09 20:00:53 +01:00
)