diff options
author | Ryo Nihei <nihei.dev@gmail.com> | 2021-07-22 20:30:23 +0900 |
---|---|---|
committer | Ryo Nihei <nihei.dev@gmail.com> | 2021-07-22 20:30:23 +0900 |
commit | 0baa69676ca83dbb4fe7241478a6ecf6c85418a9 (patch) | |
tree | f337b96c1d2c4742647b9e4570d34788014333d3 /go.mod | |
parent | Write a description file (diff) | |
download | cotia-0baa69676ca83dbb4fe7241478a6ecf6c85418a9.tar.gz cotia-0baa69676ca83dbb4fe7241478a6ecf6c85418a9.tar.xz |
Add literal pattern syntax and change tree structure syntax
- Literal patterns don't interpret the special characters of regular expressions.
In other words, 'abc|def' matches only `abc|def`, not `abc` or `def`.
- Change tree structure syntax from '(...) to #(...).
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,6 +3,6 @@ module github.com/nihei9/vartan go 1.16 require ( - github.com/nihei9/maleeni v0.1.0 + github.com/nihei9/maleeni v0.2.0 github.com/spf13/cobra v1.1.3 ) |