-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from mimiro-io/feat/205/virtual-dataset
add support for virtual datasets
- Loading branch information
Showing
3 changed files
with
208 additions
and
593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,96 +1,96 @@ | ||
module github.com/mimiro-io/datahub-cli | ||
|
||
go 1.22.2 | ||
go 1.22.3 | ||
|
||
require ( | ||
github.com/MichaelMure/go-term-markdown v0.1.4 | ||
github.com/MichaelMure/go-term-text v0.3.1 // indirect | ||
github.com/alecthomas/chroma v0.10.0 // indirect | ||
github.com/bcicen/jstream v1.0.1 | ||
github.com/disintegration/imaging v1.6.2 // indirect | ||
github.com/dlclark/regexp2 v1.7.0 // indirect | ||
github.com/dlclark/regexp2 v1.11.0 // indirect | ||
github.com/dop251/goja v1.0.0 | ||
github.com/eliukblau/pixterm/pkg/ansimage v0.0.0-20191210081756-9fb6cf8c2f75 // indirect | ||
github.com/evanw/esbuild v0.15.10 | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/evanw/esbuild v0.21.2 | ||
github.com/fatih/color v1.17.0 // indirect | ||
github.com/franela/goblin v0.0.0-20211003143422-0a4f594942bf | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect | ||
github.com/gofrs/uuid v4.3.0+incompatible | ||
github.com/gomarkdown/markdown v0.0.0-20230922105210-14b16010c2ee // indirect | ||
github.com/gookit/color v1.5.2 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect | ||
github.com/gofrs/uuid v4.4.0+incompatible | ||
github.com/gomarkdown/markdown v0.0.0-20240419095408-642f0ee99ae2 // indirect | ||
github.com/gookit/color v1.5.4 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/kyokomi/emoji/v2 v2.2.10 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kyokomi/emoji/v2 v2.2.13 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/mattn/go-runewidth v0.0.14 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pterm/pterm v0.12.49 | ||
github.com/rivo/uniseg v0.4.2 // indirect | ||
github.com/pterm/pterm v0.12.79 | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/rotisserie/eris v0.5.4 | ||
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 | ||
github.com/spf13/afero v1.9.2 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/cobra v1.5.0 | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.13.0 | ||
github.com/subosito/gotenv v1.4.1 // indirect | ||
github.com/spf13/viper v1.18.2 | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/tidwall/pretty v1.2.1 | ||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
go.etcd.io/bbolt v1.3.6 | ||
golang.org/x/image v0.13.0 // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/term v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 | ||
go.etcd.io/bbolt v1.3.10 | ||
golang.org/x/image v0.16.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/term v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
require ( | ||
github.com/coreos/go-oidc/v3 v3.5.0 | ||
github.com/coreos/go-oidc/v3 v3.10.0 | ||
github.com/golang-jwt/jwt/v4 v4.5.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/lestrrat-go/jwx/v2 v2.0.21 | ||
github.com/nirasan/go-oauth-pkce-code-verifier v0.0.0-20220510032225-4f9f17eaec4c | ||
github.com/pkg/errors v0.9.1 | ||
golang.org/x/oauth2 v0.6.0 | ||
golang.org/x/sync v0.2.0 | ||
golang.org/x/oauth2 v0.20.0 | ||
golang.org/x/sync v0.7.0 | ||
) | ||
|
||
require ( | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect | ||
github.com/go-jose/go-jose/v3 v3.0.3 // indirect | ||
atomicgo.dev/schedule v0.1.0 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect | ||
github.com/go-jose/go-jose/v4 v4.0.2 // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/labstack/gommon v0.4.0 // indirect | ||
github.com/labstack/gommon v0.4.2 // indirect | ||
github.com/lestrrat-go/blackmagic v1.0.2 // indirect | ||
github.com/lestrrat-go/httpcc v1.0.1 // indirect | ||
github.com/lestrrat-go/httprc v1.0.5 // indirect | ||
github.com/lestrrat-go/iter v1.0.2 // indirect | ||
github.com/lestrrat-go/option v1.0.1 // indirect | ||
github.com/sagikazarmark/locafero v0.4.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/segmentio/asm v1.2.0 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.1 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.2 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/crypto v0.23.0 // indirect | ||
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect | ||
) | ||
|
||
require ( | ||
atomicgo.dev/cursor v0.1.1 // indirect | ||
atomicgo.dev/keyboard v0.2.8 // indirect | ||
github.com/containerd/console v1.0.3 // indirect | ||
github.com/labstack/echo/v4 v4.9.1 | ||
github.com/lithammer/fuzzysearch v1.1.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.5 // indirect | ||
atomicgo.dev/cursor v0.2.0 // indirect | ||
atomicgo.dev/keyboard v0.2.9 // indirect | ||
github.com/containerd/console v1.0.4 // indirect | ||
github.com/labstack/echo/v4 v4.12.0 | ||
github.com/lithammer/fuzzysearch v1.1.8 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.2 // indirect | ||
) | ||
|
||
replace github.com/dop251/goja => github.com/mimiro-io/goja v1.0.0 |
Oops, something went wrong.