-
Notifications
You must be signed in to change notification settings - Fork 5
/
transducers.asd
51 lines (48 loc) · 1.61 KB
/
transducers.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
(defsystem "transducers"
:version "1.3.0"
:author "Colin Woodbury <[email protected]>"
:license "MPL-2.0"
:depends-on ()
:components ((:module "transducers"
:components
((:file "package")
(:file "transducers")
(:file "reducers")
(:file "sources")
(:file "entry")
(:file "conditions")
(:file "utils"))))
:description "Ergonomic, efficient data processing."
:in-order-to ((test-op (test-op :transducers/tests))))
(defsystem "transducers/tests"
:author "Colin Woodbury <[email protected]>"
:license "MPL-2.0"
:depends-on (:transducers
:transducers/jzon
:transducers/fset
:fset
:parachute
:str)
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for transducers"
:perform (test-op (op c) (symbol-call :parachute :test :transducers/tests)))
(defsystem "transducers/jzon"
:version "1.3.0"
:author "Colin Woodbury <[email protected]>"
:license "MPL-2.0"
:depends-on (:transducers :com.inuoe.jzon :trivia)
:components ((:module "jzon"
:components
((:file "jzon"))))
:description "JSON extension for Transducers.")
(defsystem "transducers/fset"
:version "1.3.0"
:author "Colin Woodbury <[email protected]>"
:license "MPL-2.0"
:depends-on (:transducers :fset)
:components ((:module "fset"
:components
((:file "fset"))))
:description "Fset extension for Transducers.")