Based on https://github.com/nnevatie/capnwebcpp
1module github.com/gocapnweb
2
3go 1.23.0
4
5toolchain go1.24.2
6
7require (
8 github.com/gorilla/websocket v1.5.0
9 github.com/labstack/echo/v4 v4.13.4
10)
11
12require (
13 github.com/labstack/gommon v0.4.2 // indirect
14 github.com/mattn/go-colorable v0.1.14 // indirect
15 github.com/mattn/go-isatty v0.0.20 // indirect
16 github.com/valyala/bytebufferpool v1.0.0 // indirect
17 github.com/valyala/fasttemplate v1.2.2 // indirect
18 golang.org/x/crypto v0.38.0 // indirect
19 golang.org/x/net v0.40.0 // indirect
20 golang.org/x/sys v0.33.0 // indirect
21 golang.org/x/text v0.25.0 // indirect
22 golang.org/x/time v0.11.0 // indirect
23)