2019-04-16 05:00:55 -05:00
|
|
|
module github.com/grafana/grafana
|
|
|
|
|
2020-09-02 08:51:19 -05:00
|
|
|
go 1.15
|
2019-04-16 05:00:55 -05:00
|
|
|
|
2020-07-13 06:19:40 -05:00
|
|
|
// Override xorm's outdated go-mssqldb dependency, since we can't upgrade to current xorm (due to breaking changes).
|
|
|
|
// We need a more current go-mssqldb so we get rid of a version of apache/thrift with vulnerabilities.
|
|
|
|
replace github.com/denisenkom/go-mssqldb => github.com/denisenkom/go-mssqldb v0.0.0-20200620013148-b91950f658ec
|
|
|
|
|
2020-08-25 04:52:21 -05:00
|
|
|
// Override k8s.io/client-go outdated dependency, which is an indirect dependency of grafana/loki.
|
|
|
|
// It's also present on grafana/loki's go.mod so we'll need till it gets updated.
|
|
|
|
replace k8s.io/client-go => k8s.io/client-go v0.18.8
|
|
|
|
|
2019-04-16 05:00:55 -05:00
|
|
|
require (
|
2020-10-24 06:00:36 -05:00
|
|
|
cloud.google.com/go v0.70.0 // indirect
|
|
|
|
cloud.google.com/go/storage v1.12.0
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/BurntSushi/toml v0.3.1
|
|
|
|
github.com/VividCortex/mysqlerr v0.0.0-20170204212430-6c6b55f8796f
|
2020-10-28 03:36:57 -05:00
|
|
|
github.com/aws/aws-sdk-go v1.35.5
|
2020-10-08 09:42:55 -05:00
|
|
|
github.com/beevik/etree v1.1.0
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/benbjohnson/clock v0.0.0-20161215174838-7dc76406b6d3
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
|
2020-11-05 12:37:04 -06:00
|
|
|
github.com/centrifugal/centrifuge v0.13.0
|
2020-09-15 09:38:23 -05:00
|
|
|
github.com/crewjam/saml v0.4.1
|
2019-07-01 07:09:04 -05:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2020-07-13 06:19:40 -05:00
|
|
|
github.com/denisenkom/go-mssqldb v0.0.0-20200620013148-b91950f658ec
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 // indirect
|
|
|
|
github.com/facebookgo/inject v0.0.0-20180706035515-f23751cae28b
|
|
|
|
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
|
|
|
|
github.com/facebookgo/structtag v0.0.0-20150214074306-217e25fb9691 // indirect
|
|
|
|
github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 // indirect
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/fatih/color v1.9.0
|
2020-10-19 13:06:12 -05:00
|
|
|
github.com/gchaincl/sqlhooks v1.3.0
|
2020-11-12 05:29:43 -06:00
|
|
|
github.com/getsentry/sentry-go v0.7.0
|
2019-09-09 06:22:06 -05:00
|
|
|
github.com/go-macaron/binding v0.0.0-20190806013118-0b4f37bab25b
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/go-macaron/gzip v0.0.0-20160222043647-cad1c6580a07
|
2020-04-25 15:48:20 -05:00
|
|
|
github.com/go-sql-driver/mysql v1.5.0
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/go-stack/stack v1.8.0
|
2019-04-16 08:26:39 -05:00
|
|
|
github.com/gobwas/glob v0.2.3
|
2020-10-26 14:35:12 -05:00
|
|
|
github.com/golang/mock v1.4.4
|
2020-10-24 06:00:36 -05:00
|
|
|
github.com/golang/protobuf v1.4.3
|
|
|
|
github.com/google/go-cmp v0.5.2
|
2020-10-28 03:36:57 -05:00
|
|
|
github.com/google/uuid v1.1.2
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/gosimple/slug v1.4.2
|
2019-09-30 08:16:04 -05:00
|
|
|
github.com/grafana/grafana-plugin-model v0.0.0-20190930120109-1fc953a61fb4
|
2020-11-03 04:24:26 -06:00
|
|
|
github.com/grafana/grafana-plugin-sdk-go v0.79.0
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/grafana/loki v1.6.0
|
2020-08-28 08:33:21 -05:00
|
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.2.1
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/hashicorp/go-hclog v0.12.2
|
2020-04-08 11:54:23 -05:00
|
|
|
github.com/hashicorp/go-plugin v1.2.2
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/hashicorp/go-version v1.2.0
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/inconshreveable/log15 v0.0.0-20180818164646-67afb5ed74ec
|
2020-11-23 15:19:52 -06:00
|
|
|
github.com/influxdata/influxdb-client-go/v2 v2.2.0
|
2020-10-28 03:36:57 -05:00
|
|
|
github.com/jmespath/go-jmespath v0.4.0
|
2020-09-15 09:38:23 -05:00
|
|
|
github.com/jonboulle/clockwork v0.2.1 // indirect
|
2019-08-30 11:14:32 -05:00
|
|
|
github.com/jung-kurt/gofpdf v1.10.1
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/lib/pq v1.3.0
|
2019-12-11 07:44:29 -06:00
|
|
|
github.com/linkedin/goavro/v2 v2.9.7
|
2020-08-19 04:46:36 -05:00
|
|
|
github.com/magefile/mage v1.9.0
|
2020-08-14 11:40:02 -05:00
|
|
|
github.com/mattn/go-colorable v0.1.7 // indirect
|
2020-03-10 06:59:03 -05:00
|
|
|
github.com/mattn/go-isatty v0.0.12
|
2019-09-09 06:22:06 -05:00
|
|
|
github.com/mattn/go-sqlite3 v1.11.0
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/opentracing/opentracing-go v1.2.0
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
2020-04-25 15:48:20 -05:00
|
|
|
github.com/pkg/errors v0.9.1
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/prometheus/client_golang v1.7.1
|
2020-07-27 02:26:16 -05:00
|
|
|
github.com/prometheus/client_model v0.2.0
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/prometheus/common v0.10.0
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect
|
2019-04-26 07:47:16 -05:00
|
|
|
github.com/robfig/cron v0.0.0-20180505203441-b41be1df6967
|
2019-08-30 11:14:32 -05:00
|
|
|
github.com/robfig/cron/v3 v3.0.0
|
2020-10-08 09:42:55 -05:00
|
|
|
github.com/russellhaering/goxmldsig v0.0.0-20200902171629-2e1fbc2c5593
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/smartystreets/goconvey v1.6.4
|
2020-09-15 09:38:23 -05:00
|
|
|
github.com/stretchr/testify v1.6.1
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/teris-io/shortid v0.0.0-20171029131806-771a37caa5cf
|
2020-03-26 04:26:47 -05:00
|
|
|
github.com/timberio/go-datemath v0.1.1-0.20200323150745-74ddef604fff
|
2019-09-02 04:02:26 -05:00
|
|
|
github.com/ua-parser/uap-go v0.0.0-20190826212731-daf92ba38329
|
2020-08-25 04:52:21 -05:00
|
|
|
github.com/uber/jaeger-client-go v2.25.0+incompatible
|
2019-09-09 06:22:06 -05:00
|
|
|
github.com/unknwon/com v1.0.1
|
2020-02-26 05:27:31 -06:00
|
|
|
github.com/urfave/cli/v2 v2.1.1
|
2020-03-18 09:30:07 -05:00
|
|
|
github.com/xorcare/pointer v1.1.0
|
2019-04-16 05:00:55 -05:00
|
|
|
github.com/yudai/gojsondiff v1.0.0
|
2020-09-15 09:38:23 -05:00
|
|
|
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
|
2020-10-24 06:00:36 -05:00
|
|
|
golang.org/x/net v0.0.0-20201022231255-08b38378de70
|
|
|
|
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
|
|
|
|
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
|
|
|
|
golang.org/x/sys v0.0.0-20201022201747-fb209a7c41cd // indirect
|
|
|
|
golang.org/x/tools v0.0.0-20201023150057-2f4fa188d925 // indirect
|
2020-11-19 06:17:00 -06:00
|
|
|
gonum.org/v1/gonum v0.6.0
|
2020-10-24 06:00:36 -05:00
|
|
|
google.golang.org/api v0.33.0
|
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
|
|
google.golang.org/genproto v0.0.0-20201022181438-0ff5f38871d5 // indirect
|
|
|
|
google.golang.org/grpc v1.33.1
|
2019-04-16 05:00:55 -05:00
|
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
|
|
|
gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d // indirect
|
2020-08-25 04:52:21 -05:00
|
|
|
gopkg.in/ini.v1 v1.51.0
|
2019-04-16 05:00:55 -05:00
|
|
|
gopkg.in/ldap.v3 v3.0.2
|
2020-06-29 12:15:11 -05:00
|
|
|
gopkg.in/macaron.v1 v1.3.9
|
2019-04-16 05:00:55 -05:00
|
|
|
gopkg.in/mail.v2 v2.3.1
|
2019-08-13 05:51:13 -05:00
|
|
|
gopkg.in/redis.v5 v5.2.9
|
2020-02-13 03:12:25 -06:00
|
|
|
gopkg.in/square/go-jose.v2 v2.4.1
|
2020-08-14 11:40:02 -05:00
|
|
|
gopkg.in/yaml.v2 v2.3.0
|
2020-04-01 08:57:21 -05:00
|
|
|
xorm.io/core v0.7.3
|
|
|
|
xorm.io/xorm v0.8.1
|
2019-04-16 05:00:55 -05:00
|
|
|
)
|