You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
473 B
18 lines
473 B
(asdf:defsystem #:binary-parser |
|
:description "A toolset for parsing binary data formats." |
|
:author "Michael Fiano <mail@mfiano.net>" |
|
:license "MIT" |
|
:homepage "https://github.com/mfiano/binary-parser" |
|
:encoding :utf-8 |
|
:depends-on (#:babel |
|
#:bitio |
|
#:chipz |
|
#:fast-io) |
|
:pathname "src" |
|
:serial t |
|
:components |
|
((:file "package") |
|
(:file "buffer") |
|
(:file "common") |
|
(:file "processors") |
|
(:file "readers")))
|
|
|