diff options
| author | Shulhan <ms@kilabit.info> | 2023-05-25 22:10:49 +0700 |
|---|---|---|
| committer | Shulhan <m.shulhan@gmail.com> | 2026-04-09 22:18:07 +0700 |
| commit | d0c5be4444ee2c1b8371456adb2f65bf6ef62234 (patch) | |
| tree | bbd77b90f23619df8bef1ae7c7c9adce61c9c0f3 /go.mod | |
| parent | 3d13cee518990fcfba0e65a9077a975b94ad209e (diff) | |
| download | go-x-proposal-d0c5be4444ee2c1b8371456adb2f65bf6ef62234.tar.xz | |
cmd/www-go-proposal: static HTTP server to serve proposal with HTML
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -0,0 +1,21 @@ +module git.sr.ht/~shulhan/go-x-proposal + +go 1.19 + +require ( + git.sr.ht/~shulhan/ciigo v0.10.0 + github.com/shuLhan/share v0.46.0 +) + +require ( + git.sr.ht/~shulhan/asciidoctor-go v0.4.1 // indirect + github.com/yuin/goldmark v1.5.4 // indirect + github.com/yuin/goldmark-meta v1.1.0 // indirect + golang.org/x/net v0.7.0 // indirect + golang.org/x/sys v0.5.0 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect +) + +//replace github.com/shuLhan/share => ../share + +//replace git.sr.ht/~shulhan/ciigo => ../ciigo |
