forked from
margin.at/margin
Write on the margins of the internet. Powered by the AT Protocol.
1module margin.at
2
3go 1.24.0
4
5require (
6 github.com/go-chi/chi/v5 v5.1.0
7 github.com/go-chi/cors v1.2.1
8 github.com/go-jose/go-jose/v4 v4.0.4
9 github.com/gorilla/websocket v1.5.3
10 github.com/joho/godotenv v1.5.1
11 github.com/lib/pq v1.10.9
12 github.com/mattn/go-sqlite3 v1.14.22
13 golang.org/x/image v0.34.0
14)
15
16require (
17 github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
18 github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
19 github.com/stretchr/testify v1.10.0 // indirect
20 golang.org/x/crypto v0.35.0 // indirect
21 golang.org/x/text v0.32.0 // indirect
22)