-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgo.mod
33 lines (30 loc) · 1.07 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
module github.com/caltechlibrary/datatools
go 1.23.3
require (
github.com/BurntSushi/toml v1.4.0
github.com/caltechlibrary/doitools v0.0.2
github.com/caltechlibrary/dotpath v0.0.4
github.com/caltechlibrary/tmplfn v0.0.22
github.com/dexyk/stringosim v0.0.0-20170922105913-9d0b3e91a842
github.com/ghodss/yaml v1.0.0
github.com/glebarez/go-sqlite v1.22.0
github.com/go-sql-driver/mysql v1.8.1
github.com/google/uuid v1.6.0
github.com/lib/pq v1.10.9
github.com/tealeg/xlsx v1.0.5
gopkg.in/yaml.v3 v3.0.1
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/hscells/doi v0.0.0-20170821055049-1a5819c7d576 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
golang.org/x/sys v0.15.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
modernc.org/libc v1.37.6 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.7.2 // indirect
modernc.org/sqlite v1.28.0 // indirect
)