-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
57 lines (50 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
module github.com/HydrologicEngineeringCenter/shape-sql-loader
go 1.18
replace github.com/usace/xlscellreader => ../xlscellreader
replace github.com/lukeroth/gdal => ../gdal
replace github.com/usace/filestore => ../filestore
require (
github.com/jonas-p/go-shp v0.1.1
github.com/lukeroth/gdal v0.0.0-20211109203239-b571df3ee436
github.com/usace/filestore v0.1.5-0.20220416172749-6484811f7b13
github.com/usace/goquery v0.0.0-20220307153314-47955c94bf3a
)
require (
github.com/aws/aws-sdk-go v1.31.0 // indirect
github.com/georgysavva/scany v0.2.9 // indirect
github.com/jackc/pgtype v1.8.1 // indirect
github.com/jmespath/go-jmespath v0.3.0 // indirect
github.com/xuri/nfp v0.0.0-20220409054826-5e722a1d9e22 // indirect
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.4.0
github.com/google/uuid v1.3.0
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.10.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.1.1 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgx/v4 v4.13.0 // indirect
github.com/jackc/puddle v1.1.3 // indirect
github.com/jmoiron/sqlx v1.3.4 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/richardlehane/mscfb v1.0.4 // indirect
github.com/richardlehane/msoleps v1.0.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stoewer/go-strcase v1.2.0 // indirect
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/urfave/cli/v2 v2.4.0
github.com/usace/xlscellreader v0.0.0-20220409191951-136bff3fa423
github.com/xuri/efp v0.0.0-20220407160117-ad0f7a785be8 // indirect
github.com/xuri/excelize/v2 v2.6.0
golang.org/x/crypto v0.0.0-20220408190544-5352b0902921 // indirect
golang.org/x/net v0.0.0-20220407224826-aac1ed45d8e3 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)