-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
24 lines (20 loc) · 769 Bytes
/
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
module github.com/smilyorg/tinygpkg/example
go 1.21.1
replace github.com/smilyorg/tinygpkg => ../
require (
github.com/golang/geo v0.0.0-20230421003525-6adc56603217
github.com/smilyorg/tinygpkg v0.0.0-00010101000000-000000000000
)
require (
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/peterstace/simplefeatures v0.44.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
golang.org/x/sys v0.5.0 // indirect
modernc.org/libc v1.22.3 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.5.0 // indirect
modernc.org/sqlite v1.21.1 // indirect
zombiezen.com/go/sqlite v0.13.0 // indirect
)