Skip to content

Commit

Permalink
updated acemimpl, should work again
Browse files Browse the repository at this point in the history
  • Loading branch information
tawalaya committed Sep 20, 2019
1 parent a00e75b commit 0c1f824
Show file tree
Hide file tree
Showing 5 changed files with 404 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go-acme-proxy
build/*
*.pem
*.iml
56 changes: 50 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,55 @@ module github.com/tawalaya/go-acme-proxy
go 1.12

require (
github.com/gorilla/websocket v1.4.0 // indirect
cloud.google.com/go v0.46.3 // indirect
github.com/alecthomas/units v0.0.0-20190910110746-680d30ca3117 // indirect
github.com/coreos/bbolt v1.3.3 // indirect
github.com/coreos/etcd v3.3.15+incompatible // indirect
github.com/coreos/go-etcd v2.0.0+incompatible // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
github.com/gogo/protobuf v1.3.0 // indirect
github.com/google/go-cmp v0.3.1 // indirect
github.com/google/pprof v0.0.0-20190908185732-236ed259b199 // indirect
github.com/gorilla/websocket v1.4.1 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.1.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.11.2 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/kabukky/httpscerts v0.0.0-20150320125433-617593d7dcb3
github.com/sirupsen/logrus v1.4.0
github.com/spf13/pflag v1.0.3
github.com/spf13/viper v1.3.2
github.com/vulcand/oxy v0.0.0-20181130145254-c34b0c501e43
golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mailgun/timetools v0.0.0-20170619190023-f3a7b8ffff47 // indirect
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/prometheus/client_golang v1.1.0 // indirect
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 // indirect
github.com/prometheus/common v0.7.0 // indirect
github.com/prometheus/procfs v0.0.5 // indirect
github.com/rogpeppe/fastuuid v1.2.0 // indirect
github.com/rogpeppe/go-internal v1.3.2 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.4.0
github.com/stretchr/objx v0.2.0 // indirect
github.com/ugorji/go v1.1.7 // indirect
github.com/vulcand/oxy v1.0.0
go.etcd.io/bbolt v1.3.3 // indirect
go.opencensus.io v0.22.1 // indirect
golang.org/x/crypto v0.0.0-20190911031432-227b76d455e7
golang.org/x/exp v0.0.0-20190919035709-81c71964d733 // indirect
golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a // indirect
golang.org/x/mobile v0.0.0-20190910184405-b558ed863381 // indirect
golang.org/x/net v0.0.0-20190918130420-a8b05e9114ab // indirect
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/sys v0.0.0-20190919044723-0c1ff786ef13 // indirect
golang.org/x/tools v0.0.0-20190920023704-c426260dee6e // indirect
google.golang.org/api v0.10.0 // indirect
google.golang.org/appengine v1.6.2 // indirect
google.golang.org/genproto v0.0.0-20190916214212-f660b8655731 // indirect
google.golang.org/grpc v1.23.1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect
)
Loading

0 comments on commit 0c1f824

Please sign in to comment.