Skip to content

Commit

Permalink
update lexer package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Acetolyne committed Nov 24, 2023
1 parent 7e537f3 commit 0f63e08
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
module github.com/Acetolyne/flowcat

go 1.21
go 1.21.4

require (
github.com/Acetolyne/commentlex v0.0.0-20231123093842-ada8ee1635f0
github.com/timtadh/getopt v1.0.1
github.com/timtadh/lexmachine v0.2.3
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/Acetolyne/flowcat/lexer v0.0.0-20231124220849-7e537f3c2978 // indirect
github.com/timtadh/data-structures v0.6.1 // indirect
)
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
github.com/Acetolyne/commentlex v0.0.0-20231123093842-ada8ee1635f0 h1:mre87GM1e9OK15r5ENA5Tp0dZfNlQYGvTolMxr0Y1Vw=
github.com/Acetolyne/commentlex v0.0.0-20231123093842-ada8ee1635f0/go.mod h1:CvdwI0VqCAPYjw3H7IHyiScrc5CEHHPPSR60LWnninQ=
github.com/Acetolyne/flowcat/lexer v0.0.0-20231124220849-7e537f3c2978 h1:FHhLH8MlghouOHSn1kU6zoSx554Qnv4DiJ1xSz3+t0A=
github.com/Acetolyne/flowcat/lexer v0.0.0-20231124220849-7e537f3c2978/go.mod h1:c2hu52aTD1FS/OhLQyc7SP34HVoRKKu7OXziNlp61pI=
github.com/timtadh/data-structures v0.6.1 h1:76eDpwngj2rEi9r/qvdH6YL7wMXGsoFFzhEylo/IacA=
github.com/timtadh/data-structures v0.6.1/go.mod h1:uYUnI1cQi/5yMCc7s23I+x8Mn8BCMf4WgK+7/4QSEk4=
github.com/timtadh/getopt v1.0.0/go.mod h1:L3EL6YN2G0eIAhYBo9b7SB9d/kEQmdnwthIlMJfj210=
Expand Down
2 changes: 1 addition & 1 deletion lexer/lexer.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package lexer

import (
"fmt"
Expand Down

0 comments on commit 0f63e08

Please sign in to comment.