83 lines
3.4 KiB
Modula-2
83 lines
3.4 KiB
Modula-2
module starwiz.cn/sjy01/image-proc
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/airbusgeo/godal v0.0.11
|
|
github.com/duke-git/lancet/v2 v2.3.1
|
|
github.com/fsnotify/fsnotify v1.7.0
|
|
github.com/paulmach/orb v0.11.1
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/spf13/viper v1.18.2
|
|
gocv.io/x/gocv v0.36.1
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go v0.112.0 // indirect
|
|
cloud.google.com/go/storage v1.36.0 // indirect
|
|
git.sr.ht/~sbinet/gg v0.5.0 // indirect
|
|
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect
|
|
github.com/campoy/embedmd v1.0.0 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/go-fonts/liberation v0.3.2 // indirect
|
|
github.com/go-latex/latex v0.0.0-20231108140139-5c1ce85aa4ea // indirect
|
|
github.com/go-pdf/fpdf v0.9.0 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jonboulle/clockwork v0.4.0 // indirect
|
|
github.com/lestrrat-go/strftime v1.0.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.17 // indirect
|
|
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/mjibson/go-dsp v0.0.0-20180508042940-11479a337f12 // indirect
|
|
github.com/nuknal/goNum v0.0.0-20240712030226-6452806523e8 // indirect
|
|
github.com/onsi/ginkgo v1.16.5 // indirect
|
|
github.com/onsi/gomega v1.33.1 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/sagikazarmark/locafero v0.4.0 // indirect
|
|
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
github.com/spf13/afero v1.11.0 // indirect
|
|
github.com/spf13/cast v1.6.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
go.mongodb.org/mongo-driver v1.11.4 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
|
|
go.opentelemetry.io/otel v1.24.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.24.0 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.9.0 // indirect
|
|
golang.org/x/crypto v0.23.0 // indirect
|
|
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect
|
|
golang.org/x/image v0.14.0 // indirect
|
|
golang.org/x/oauth2 v0.16.0 // indirect
|
|
golang.org/x/term v0.20.0 // indirect
|
|
golang.org/x/text v0.15.0 // indirect
|
|
gonum.org/v1/plot v0.14.0 // indirect
|
|
google.golang.org/api v0.155.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240311173647-c811ad7063a7 // indirect
|
|
google.golang.org/grpc v1.62.1 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/k0kubun/pp/v3 v3.2.0
|
|
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
|
|
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
|
|
github.com/spf13/cobra v1.8.0
|
|
github.com/x-cray/logrus-prefixed-formatter v0.5.2
|
|
golang.org/x/net v0.25.0 // indirect
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
gonum.org/v1/gonum v0.15.0
|
|
)
|