Files
boringproxy/go.mod
Anders Pitman 60fbfac081 Implement first draft of HTML UI
The UI was originally written using fancy HTML checkbox toggle
hacks in order to make the UI very fast. It's cool but complicated
and difficult to change. In order to make updates to the UI more
quickly, I'm changing it to use traditional HTML with full page
reloads for navigation. It's not as fast but much simpler.
2021-12-14 14:06:25 -07:00

25 lines
785 B
Modula-2

module github.com/boringproxy/boringproxy
go 1.17
require (
github.com/GeertJohan/go.rice v1.0.0
github.com/caddyserver/certmagic v0.12.0
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de
)
require (
github.com/daaku/go.zipexe v1.0.0 // indirect
github.com/klauspost/cpuid v1.2.5 // indirect
github.com/libdns/libdns v0.1.0 // indirect
github.com/mholt/acmez v0.1.1 // indirect
github.com/miekg/dns v1.1.30 // indirect
go.uber.org/atomic v1.6.0 // indirect
go.uber.org/multierr v1.5.0 // indirect
go.uber.org/zap v1.15.0 // indirect
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
golang.org/x/text v0.3.0 // indirect
)