csv2db/go.mod

20 lines
582 B
Modula-2
Raw Normal View History

2022-09-18 12:43:16 +05:00
module github.com/nxshock/csv2db
go 1.19
require (
github.com/denisenkom/go-mssqldb v0.12.2
github.com/dimchansky/utfbom v1.1.1
2022-10-09 17:23:59 +05:00
github.com/urfave/cli/v2 v2.17.1
golang.org/x/text v0.3.7
2022-09-18 12:43:16 +05:00
)
require (
2022-10-09 17:23:59 +05:00
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
2022-09-18 12:43:16 +05:00
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
2022-10-09 17:23:59 +05:00
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/crypto v0.0.0-20221005025214-4161e89ecf1b // indirect
2022-09-18 12:43:16 +05:00
)