diff options
| author | Shulhan <ms@kilabit.info> | 2024-12-23 02:42:06 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-01-07 00:13:55 +0700 |
| commit | b686ea0a41b7af68d4d86ff3cc2c3068ebb88b66 (patch) | |
| tree | b8725c3c2e2461e2b0542c76880d385ee5aa6741 /go.mod | |
| parent | ff338f853eb7537230c84ccc06feae3b63859877 (diff) | |
| download | ciigo-b686ea0a41b7af68d4d86ff3cc2c3068ebb88b66.tar.xz | |
all: refactoring to use [watchfs/v2]
The [watchfs/v2] bring new enhancements that watching only single file
instead of all markup files for changes.
This minimize number of goroutine calling os.Stat on each markup
files being watched on directory.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -3,18 +3,19 @@ module git.sr.ht/~shulhan/ciigo -go 1.22.0 +go 1.23.4 require ( - git.sr.ht/~shulhan/asciidoctor-go v0.6.1 - git.sr.ht/~shulhan/pakakeh.go v0.58.1 + git.sr.ht/~shulhan/asciidoctor-go v0.6.2-0.20250106025231-ed20fc1c23e8 + git.sr.ht/~shulhan/pakakeh.go v0.59.0 github.com/yuin/goldmark v1.7.8 github.com/yuin/goldmark-meta v1.1.0 ) require ( - golang.org/x/net v0.32.0 // indirect - golang.org/x/sys v0.28.0 // indirect + golang.org/x/exp v0.0.0-20250103183323-7d7fa50e5329 // indirect + golang.org/x/net v0.33.0 // indirect + golang.org/x/sys v0.29.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) |
