blob: 3b167a8ae81a973519e5985024814500ef94369c [file] [log] [blame]
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001// Copyright 2020 The Monogon Project Authors.
2//
3// SPDX-License-Identifier: Apache-2.0
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16
17package main
18
19func depsSQLBoiler(p *planner) {
20 p.collect(
21 "github.com/volatiletech/sqlboiler/v4", "v4.1.1",
22 ).use(
23 "github.com/denisenkom/go-mssqldb",
24 "github.com/ericlagergren/decimal",
25 "github.com/friendsofgo/errors",
26 "github.com/go-sql-driver/mysql",
27 "github.com/golang-sql/civil",
28 "github.com/hashicorp/hcl",
29 "github.com/lib/pq",
30 "github.com/magiconair/properties",
31 "github.com/spf13/cast",
32 "github.com/spf13/cobra",
33 "github.com/spf13/jwalterweatherman",
34 "github.com/spf13/viper",
35 "github.com/subosito/gotenv",
36 "github.com/volatiletech/inflect",
37 "github.com/volatiletech/null/v8",
38 "github.com/volatiletech/randomize",
39 "github.com/volatiletech/strmangle",
40 "gopkg.in/ini.v1",
41 )
42 // required by //build/sqlboiler autogeneration
43 p.collect(
44 "github.com/glerchundi/sqlboiler-crdb/v4", "d540ee52783ebbbfe010acc5d91a9043d88de3fd",
45 ).use(
46 "github.com/gofrs/uuid",
47 )
48 p.collect(
49 "github.com/rubenv/sql-migrate", "ae26b214fa431c314a5a9b986d5c90fb1719c68d",
50 ).use(
51 "github.com/armon/go-radix",
52 "github.com/mattn/go-sqlite3",
53 "github.com/mitchellh/cli",
54 "github.com/posener/complete",
55 "gopkg.in/gorp.v1",
56 )
57}