Skip to content

Commit

Permalink
removes yasos dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
iraikov committed Oct 2, 2021
1 parent f433147 commit 1818da4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lexgen.egg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
((synopsis "Lexer combinators")
(license "GPL-3")
(category parsing)
(dependencies srfi-1 utf8 yasos srfi-127)
(dependencies srfi-1 utf8 srfi-127)
(test-dependencies test srfi-14)
(author "Ivan Raikov")
(components (extension lexgen))
Expand Down
1 change: 0 additions & 1 deletion lexgen.scm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

(import scheme (chicken base)
(only srfi-1 first second filter-map fold concatenate every lset<= )
yasos yasos-collections
utf8 utf8-srfi-14 srfi-127)


Expand Down
2 changes: 1 addition & 1 deletion tests/run.scm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(require-extension scheme (chicken base)
(chicken format)
srfi-1 srfi-14
test lexgen yasos yasos-collections)
test lexgen)

(define a-pat (tok #\a (try char=?)))
(define b-pat (tok #\b (try char=?)))
Expand Down

0 comments on commit 1818da4

Please sign in to comment.