-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
52 lines (49 loc) · 2.2 KB
/
Copy pathgo.mod
File metadata and controls
52 lines (49 loc) · 2.2 KB
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
module github.com/tobilg/duckdb-tileserver
go 1.24.0
require (
github.com/duckdb/duckdb-go/v2 v2.5.4
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.1
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/pborman/getopt/v2 v2.1.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/viper v1.21.0
github.com/theckman/httpforwarded v0.4.0
)
require (
github.com/apache/arrow-go/v18 v18.4.1 // indirect
github.com/duckdb/duckdb-go-bindings v0.1.24 // indirect
github.com/duckdb/duckdb-go-bindings/darwin-amd64 v0.1.24 // indirect
github.com/duckdb/duckdb-go-bindings/darwin-arm64 v0.1.24 // indirect
github.com/duckdb/duckdb-go-bindings/linux-amd64 v0.1.24 // indirect
github.com/duckdb/duckdb-go-bindings/linux-arm64 v0.1.24 // indirect
github.com/duckdb/duckdb-go-bindings/windows-amd64 v0.1.24 // indirect
github.com/duckdb/duckdb-go/arrowmapping v0.0.27 // indirect
github.com/duckdb/duckdb-go/mapping v0.0.27 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/google/flatbuffers v25.9.23+incompatible // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/klauspost/compress v1.18.2 // indirect
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/pierrec/lz4/v4 v4.1.22 // indirect
github.com/sagikazarmark/locafero v0.11.0 // indirect
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
github.com/spf13/afero v1.15.0 // indirect
github.com/spf13/cast v1.10.0 // indirect
github.com/spf13/pflag v1.0.10 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/exp v0.0.0-20251209150349-8475f28825e9 // indirect
golang.org/x/mod v0.31.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/telemetry v0.0.0-20251208220230-2638a1023523 // indirect
golang.org/x/text v0.28.0 // indirect
golang.org/x/tools v0.40.0 // indirect
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
)