aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2023-11-06 20:51:46 +0700
committerShulhan <ms@kilabit.info>2023-11-07 20:18:38 +0700
commit3bece2842069f98d048d2cdfec0b2f8250d38412 (patch)
tree8fd849965f8ca073a2f2d90e091da0446a371dbe /go.mod
parent46bd8b68dc8c2662618af11e3cf6a69b3194d29d (diff)
downloadciigo-3bece2842069f98d048d2cdfec0b2f8250d38412.tar.xz
go.mod: update share module to v0.50.1
This release bring many enhancements to "lib/memfs", a library for caching file system in memory. === Enhancements * lib/memfs: return nil in AddChild if file not exist * lib/memfs: quote the path in the returned error * lib/memfs: add method Child to Node * lib/memfs: call the Init method in the embedded file * lib/memfs: include empty directory * lib/memfs: re-scan directory content on Node’s Update
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod10
1 files changed, 5 insertions, 5 deletions
diff --git a/go.mod b/go.mod
index 82654ea..279bf21 100644
--- a/go.mod
+++ b/go.mod
@@ -3,18 +3,18 @@
module git.sr.ht/~shulhan/ciigo
-go 1.19
+go 1.20
require (
- git.sr.ht/~shulhan/asciidoctor-go v0.5.0
- github.com/shuLhan/share v0.50.0
- github.com/yuin/goldmark v1.5.6
+ git.sr.ht/~shulhan/asciidoctor-go v0.5.1-0.20231105052733-3d54e38bac45
+ github.com/shuLhan/share v0.50.1
+ github.com/yuin/goldmark v1.6.0
github.com/yuin/goldmark-meta v1.1.0
)
require (
golang.org/x/net v0.17.0 // indirect
- golang.org/x/sys v0.13.0 // indirect
+ golang.org/x/sys v0.14.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)