Files
data-lens/data-lens.asd
fiddlerwoaroof 3214bdd335 bug: fix system
2020-12-13 02:40:10 -08:00

28 lines
980 B
Common Lisp

(asdf:defsystem #:data-lens
:description #.(format nil "~a ~a ~a"
"Utilities for building data transormations from"
"composable functions, modeled on lenses and"
"transducers")
:author "Edward Langley <el-cl@elangley.org>"
:license "MIT"
:depends-on (:cl-ppcre
:alexandria
:serapeum)
:serial t
:components ((:file "package")
(:file "optics")
(:file "lens")))
(asdf:defsystem #:data-lens/beta/transducer
:description #.(format nil "~a ~a ~a"
"Utilities for building data transormations from"
"composable functions, modeled on lenses and"
"transducers")
:author "Edward Langley <el-cl@elangley.org>"
:license "MIT"
:depends-on (:data-lens
:alexandria)
:serial t
:components ((:file "package")
(:file "transducers")))