-
Notifications
You must be signed in to change notification settings - Fork 1
/
transit.asd
32 lines (31 loc) · 837 Bytes
/
transit.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
;;;; transit.asd ++++
(in-package :asdf-user)
(defsystem #:transit
:author "Jan Sulmont <[email protected]>"
:description "Transit library for Common Lisp"
:serial t
:license "MIT"
:source-control (:git "https://github.com/jsulmont/cl-transit")
:depends-on (#:alexandria
#:fset
#:serapeum
#:com.inuoe.jzon
#:cl-messagepack
#:local-time
#:quri
#:bit-smasher
#:frugal-uuid
#:parse-float
#:flexi-streams)
:components
((:module "src"
:serial t
:components
((:file "packages")
(:file "transit")
(:file "config")
(:file "types")
(:file "cache")
(:file "decode")
(:file "encode"))))
:in-order-to ((test-op (test-op cl-transit-tests))))