Skip to content
This repository was archived by the owner on Nov 1, 2025. It is now read-only.

Commit c36d0f1

Browse files
author
Dan Vittegleo
committed
Switch from glide to dep for dependencies
1 parent 211fda8 commit c36d0f1

File tree

2,842 files changed

+260802
-261404
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,842 files changed

+260802
-261404
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/golang:1.9
6+
7+
working_directory: /tmp
8+
9+
steps:
10+
- checkout
11+
12+
- run: make all-zip
13+
14+
- store_artifacts:
15+
path: build/linux/x86-64/awslambdaproxy.zip
16+
destination: awslambdaproxy-linux-x86-64.zip

Gopkg.lock

Lines changed: 249 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
2+
# Gopkg.toml example
3+
#
4+
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
5+
# for detailed Gopkg.toml documentation.
6+
#
7+
# required = ["github.com/user/thing/cmd/thing"]
8+
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
9+
#
10+
# [[constraint]]
11+
# name = "github.com/user/project"
12+
# version = "1.0.0"
13+
#
14+
# [[constraint]]
15+
# name = "github.com/user/project2"
16+
# branch = "dev"
17+
# source = "github.com/myfork/project2"
18+
#
19+
# [[override]]
20+
# name = "github.com/x/y"
21+
# version = "2.4.0"
22+
23+
24+
[[constraint]]
25+
name = "github.com/aws/aws-sdk-go"
26+
version = "1.8.13"
27+
28+
[[constraint]]
29+
branch = "master"
30+
name = "github.com/dan-v/gost"
31+
32+
[[constraint]]
33+
branch = "master"
34+
name = "github.com/hashicorp/yamux"
35+
36+
[[constraint]]
37+
name = "github.com/pkg/errors"
38+
version = "0.8.0"
39+
40+
[[constraint]]
41+
branch = "master"
42+
name = "github.com/spf13/cobra"
43+
44+
[[constraint]]
45+
branch = "master"
46+
name = "github.com/spf13/viper"
47+
48+
[[constraint]]
49+
branch = "master"
50+
name = "golang.org/x/crypto"

0 commit comments

Comments
 (0)