Noah Petherbridge
1ecff195ac
* Add support for JWT tokens to authenticate users from your external app. * JWT backed users can have profile pictures, profile URLs, and operator status (admin). Note that no operator features exist yet. * Add WelcomeMessages to settings.toml for default ChatServer messages to write to each public channel directed at a new user logging in. * Markdown support for chat messages!
32 lines
1.3 KiB
Modula-2
32 lines
1.3 KiB
Modula-2
module git.kirsle.net/apps/barertc
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
git.kirsle.net/go/log v0.0.0-20200902035305-70ac2848949b
|
|
github.com/BurntSushi/toml v1.2.1
|
|
github.com/golang-jwt/jwt/v4 v4.4.3
|
|
github.com/microcosm-cc/bluemonday v1.0.22
|
|
github.com/shurcooL/github_flavored_markdown v0.0.0-20210228213109-c3a9aa474629
|
|
nhooyr.io/websocket v1.8.7
|
|
)
|
|
|
|
require (
|
|
github.com/aymerick/douceur v0.2.0 // indirect
|
|
github.com/gorilla/css v1.0.0 // indirect
|
|
github.com/klauspost/compress v1.10.3 // indirect
|
|
github.com/russross/blackfriday v1.5.2 // indirect
|
|
github.com/sergi/go-diff v1.3.1 // indirect
|
|
github.com/shurcooL/highlight_diff v0.0.0-20181222201841-111da2e7d480 // indirect
|
|
github.com/shurcooL/highlight_go v0.0.0-20191220051317-782971ddf21b // indirect
|
|
github.com/shurcooL/octicon v0.0.0-20191102190552-cbb32d6a785c // indirect
|
|
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
|
|
github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d // indirect
|
|
github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e // indirect
|
|
github.com/tomnomnom/xtermcolor v0.0.0-20160428124646-b78803f00a7e // indirect
|
|
golang.org/x/crypto v0.5.0 // indirect
|
|
golang.org/x/net v0.5.0 // indirect
|
|
golang.org/x/sys v0.4.0 // indirect
|
|
golang.org/x/term v0.4.0 // indirect
|
|
)
|