Peter Kurfer
82a651cd5d
- replaced previous net/http based muxer and all other components with fiber - replaced polling with SSE to handle file changes - auto-update custom stylesheets - natively support mermaid diagrams - handle custom element attributes for lists properly - reload on config changes - replace JS templating with actual JS code and an API
48 lines
1.8 KiB
Modula-2
48 lines
1.8 KiB
Modula-2
module github.com/baez90/goveal
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/Masterminds/sprig/v3 v3.2.2
|
|
github.com/fsnotify/fsnotify v1.5.1
|
|
github.com/gofiber/fiber/v2 v2.22.0
|
|
github.com/gofiber/template v1.6.19
|
|
github.com/gomarkdown/markdown v0.0.0-20211203165214-0d698b49fbb4
|
|
github.com/google/uuid v1.3.0
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/cobra v1.3.0
|
|
github.com/spf13/viper v1.10.1
|
|
)
|
|
|
|
require (
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
github.com/Masterminds/semver/v3 v3.1.1 // indirect
|
|
github.com/andybalholm/brotli v1.0.2 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/huandu/xstrings v1.3.2 // indirect
|
|
github.com/imdario/mergo v0.3.11 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/klauspost/compress v1.13.4 // indirect
|
|
github.com/magiconair/properties v1.8.5 // indirect
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.3 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
|
github.com/shopspring/decimal v1.2.0 // indirect
|
|
github.com/spf13/afero v1.6.0 // indirect
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.2.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.31.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.7.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa // indirect
|
|
golang.org/x/sys v0.0.0-20211214234402-4825e8c3871d // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
gopkg.in/ini.v1 v1.66.2 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|