diff options
| author | Shulhan <ms@kilabit.info> | 2023-09-26 18:48:46 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-09-26 18:48:46 +0700 |
| commit | 53c2c8e0d2fda6585b6b5941b9314d8fee56e4b4 (patch) | |
| tree | 87b2b61c924dbedbc0210fee5742a26262fb60e2 | |
| parent | 40b9fe9b854ca90ed55e13c8fe74e13a506b76d1 (diff) | |
| download | awwan-53c2c8e0d2fda6585b6b5941b9314d8fee56e4b4.tar.xz | |
go.mod: update share module
This fix "go install" on cmd/awwan that does build with the replace
directive in share module which cause awwan not working properly.
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | go.sum | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -8,7 +8,7 @@ go 1.20 require ( git.sr.ht/~shulhan/ciigo v0.10.0 github.com/evanw/esbuild v0.19.3 - github.com/shuLhan/share v0.49.2-0.20230923081600-77c41ce992e6 + github.com/shuLhan/share v0.49.2-0.20230926114113-8d0720f6f940 ) require ( @@ -4,8 +4,8 @@ git.sr.ht/~shulhan/ciigo v0.10.0 h1:s1SJ3/NzBcbOLmEZ4z1Cx9Vf7ZdDIvm45b7KMCZKzEY= git.sr.ht/~shulhan/ciigo v0.10.0/go.mod h1:cG6av+ywJZZp96F43kmLB2QWjm2hYiahbsbeTX/vlgk= github.com/evanw/esbuild v0.19.3 h1:foPr0xwQM3lBWKBtscauTN9FrmJzRDVI2+EGOs82H/I= github.com/evanw/esbuild v0.19.3/go.mod h1:iINY06rn799hi48UqEnaQvVfZWe6W9bET78LbvN8VWk= -github.com/shuLhan/share v0.49.2-0.20230923081600-77c41ce992e6 h1:REQDC2UKLaWT1WGd/Iw/rfKLkXb7vtKtyObkeZeHZRk= -github.com/shuLhan/share v0.49.2-0.20230923081600-77c41ce992e6/go.mod h1:i5/MNWUy/B+b76J96VTNG8HLE/xZ8mVy+i0oR51y6Jc= +github.com/shuLhan/share v0.49.2-0.20230926114113-8d0720f6f940 h1:saOkTu/C66CXx9LaBve/MLQ707a11G7zHhKI8UPuQQI= +github.com/shuLhan/share v0.49.2-0.20230926114113-8d0720f6f940/go.mod h1:YEwLUwwBpDqPn5yxfdb0B8eFP04SKQxv5gMQwB4A+c4= github.com/yuin/goldmark v1.5.6 h1:COmQAWTCcGetChm3Ig7G/t8AFAN00t+o8Mt4cf7JpwA= github.com/yuin/goldmark v1.5.6/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/yuin/goldmark-meta v1.1.0 h1:pWw+JLHGZe8Rk0EGsMVssiNb/AaPMHfSRszZeUeiOUc= |
