scottlepp / go-duck

A Golang DuckDB library that doesn't require CGO
MIT License
7 stars 2 forks source link

Module found but does not contain package #5

Closed brentpennell closed 3 months ago

brentpennell commented 4 months ago

Hi Scott,

I just found go-duck..

I've attempted to pull it with: go get github.com/scottlepp/go-duck

Then run go mod tidy

I get: go: finding module for package github.com/scottlepp/go-duck go: duck imports github.com/scottlepp/go-duck: module github.com/scottlepp/go-duck@latest found (v0.0.19), but does not contain package github.com/scottlepp/go-duck

I've attempted to run go clean --modcache and go clean --cache

scottlepp commented 4 months ago

@brentpennell I don't see that

% go get github.com/scottlepp/go-duck         
go: downloading github.com/scottlepp/go-duck v0.0.19
% go mod tidy                                 
go: downloading github.com/grafana/grafana-plugin-sdk-go v0.212.0
go: downloading github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
go: downloading github.com/stretchr/testify v1.8.4
go: downloading github.com/apache/arrow/go/arrow v0.0.0-20200730104253-651201b0f516
go: downloading github.com/apache/arrow/go/v15 v15.0.0
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/cheekybits/genny v1.0.0
go: downloading github.com/google/go-cmp v0.6.0
go: downloading github.com/json-iterator/go v1.1.12
go: downloading github.com/mattetti/filebuffer v1.0.1
go: downloading github.com/olekukonko/tablewriter v0.0.5
go: downloading golang.org/x/text v0.14.0
go: downloading github.com/mattn/go-runewidth v0.0.10
go: downloading golang.org/x/tools v0.14.0
go: downloading golang.org/x/exp v0.0.0-20231006140011-7918f672742d
go: downloading golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/klauspost/asmfmt v1.3.2
go: downloading github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8
go: downloading golang.org/x/sync v0.4.0
go: downloading gonum.org/v1/gonum v0.12.0
go: downloading github.com/google/flatbuffers v23.5.26+incompatible
go: downloading github.com/klauspost/compress v1.16.7
go: downloading github.com/pierrec/lz4/v4 v4.1.18
go: downloading github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3
go: downloading golang.org/x/sys v0.16.0
go: downloading github.com/goccy/go-json v0.10.2
go: downloading github.com/andybalholm/brotli v1.0.5
go: downloading github.com/golang/snappy v0.0.4
go: downloading github.com/apache/thrift v0.17.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading github.com/rivo/uniseg v0.1.0
go: downloading github.com/zeebo/xxh3 v1.0.2
go: downloading github.com/klauspost/cpuid/v2 v2.2.5
go: downloading google.golang.org/grpc v1.60.1
go: downloading google.golang.org/protobuf v1.32.0
go: downloading github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c
go: downloading github.com/zeebo/assert v1.3.0
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97
go: downloading golang.org/x/net v0.20.0
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/stretchr/objx v0.5.0
go: downloading golang.org/x/mod v0.13.0
% go version
go version go1.22.2 darwin/arm64

Just created a simple project to test it image