diff options
author | Piotr Szarmanski | 2022-09-25 19:54:42 +0200 |
---|---|---|
committer | Piotr Szarmanski | 2022-09-25 19:54:42 +0200 |
commit | 8db501749d47964b436bc63cafb80a17bfd42396 (patch) | |
tree | d6982ac6eff1aeed514f7c11ee5df46a1930805d /eris.asd | |
parent | 67d00dc4ce131d5cc46f4041dbf40391697e281d (diff) |
Add parallel decoder.
Diffstat (limited to 'eris.asd')
-rw-r--r-- | eris.asd | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2,7 +2,7 @@ :name "eris" :author "mail@ykonai.net" :license "LGPLv3 or later" - :depends-on ("ironclad" "alexandria" "function-cache") + :depends-on ("ironclad" "alexandria" "trivial-gray-streams" "function-cache" "bordeaux-threads" #+unix "osicat" #+unix "mmap") :components ((:module "src" :serial t @@ -12,7 +12,8 @@ (:file "conditions") (:file "base32") (:file "eris") - (:file "eris-decode")))) + (:file "eris-decode") + #+unix (:file "parallel-decoder")))) :in-order-to ((test-op (test-op :eris/test)))) (defsystem "eris/test" |