api/go.mod

67 lines
3.2 KiB
Modula-2
Raw Normal View History

2018-11-26 20:17:33 +00:00
// Vikunja is a todo-list application to facilitate your life.
// Copyright 2018 Vikunja and contributors. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-10-11 11:28:41 +00:00
module code.vikunja.io/api
require (
cloud.google.com/go v0.30.0 // indirect
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc
2018-11-16 23:17:37 +00:00
github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf
2018-10-28 16:11:13 +00:00
github.com/client9/misspell v0.3.4
2018-10-11 11:28:41 +00:00
github.com/denisenkom/go-mssqldb v0.0.0-20180901172138-1eb28afdf9b6 // indirect
2018-11-03 15:05:45 +00:00
github.com/dgrijalva/jwt-go v3.2.0+incompatible
2018-10-28 16:11:13 +00:00
github.com/fzipp/gocyclo v0.0.0-20150627053110-6acd4345c835
2018-10-11 11:28:41 +00:00
github.com/garyburd/redigo v1.6.0 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
2018-10-27 09:33:28 +00:00
github.com/go-openapi/spec v0.17.2 // indirect
github.com/go-openapi/swag v0.17.2 // indirect
2018-10-11 11:28:41 +00:00
github.com/go-sql-driver/mysql v0.0.0-20171007150158-ee359f95877b
github.com/go-xorm/builder v0.0.0-20170519032130-c8871c857d25 // indirect
github.com/go-xorm/core v0.5.8
github.com/go-xorm/tests v0.5.6 // indirect
github.com/go-xorm/xorm v0.0.0-20170930012613-29d4a0330a00
github.com/go-xorm/xorm-redis-cache v0.0.0-20180727005610-859b313566b2
github.com/google/go-cmp v0.2.0 // indirect
2018-10-28 16:11:13 +00:00
github.com/gordonklaus/ineffassign v0.0.0-20180909121442-1003c8bd00dc
2018-10-11 11:28:41 +00:00
github.com/imdario/mergo v0.3.6
github.com/joho/godotenv v1.3.0 // indirect
2018-10-28 16:11:13 +00:00
github.com/karalabe/xgo v0.0.0-20181007145344-72da7d1d3970
2018-11-03 15:05:45 +00:00
github.com/labstack/echo v0.0.0-20180911044237-1abaa3049251
github.com/labstack/gommon v0.0.0-20180312174116-6fe1405d73ec
2018-10-11 11:28:41 +00:00
github.com/lib/pq v1.0.0 // indirect
github.com/mattn/go-oci8 v0.0.0-20181011085415-1a014d1384b5 // indirect
github.com/mattn/go-sqlite3 v1.9.0
2018-11-28 19:50:06 +00:00
github.com/mitchellh/mapstructure v1.1.2 // indirect
2018-10-11 11:28:41 +00:00
github.com/op/go-logging v0.0.0-20160211212156-b2cb9fa56473
github.com/pkg/errors v0.8.0 // indirect
2018-10-11 11:28:41 +00:00
github.com/spf13/viper v1.2.0
2018-10-27 09:33:28 +00:00
github.com/stretchr/testify v1.2.2
github.com/swaggo/echo-swagger v0.0.0-20180315045949-97f46bb9e5a5
github.com/swaggo/files v0.0.0-20180215091130-49c8a91ea3fa // indirect
2018-11-28 19:50:06 +00:00
github.com/swaggo/gin-swagger v1.0.0 // indirect
github.com/swaggo/swag v1.3.3-0.20181109030545-8f09470d62b2
github.com/urfave/cli v1.20.0 // indirect
2018-10-11 11:28:41 +00:00
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/ziutek/mymysql v1.5.4 // indirect
2018-11-03 15:05:45 +00:00
golang.org/x/crypto v0.0.0-20180312195533-182114d58262
2018-10-28 16:11:13 +00:00
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3
2018-10-27 09:33:28 +00:00
golang.org/x/tools v0.0.0-20181026183834-f60e5f99f081 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
2018-10-11 11:28:41 +00:00
gopkg.in/testfixtures.v2 v2.4.5
)