changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/dat/dat.asd

changeset 544: ec1d4d544c36
parent: 10c4bb778030
child: b57066450cfa
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 13 Jul 2024 18:18:01 -0400
permissions: -rw-r--r--
description: parquet expansion, init leb128, add little-endian octet encoders
1 (defsystem :dat
2  :description "Data formats"
3  :depends-on (:cl-ppcre :std :obj #+png :png :flexi-streams :io)
4  :version "0.1.0"
5  :serial t
6  :components ((:file "pkg")
7  (:file "proto")
8  (:file "sxp")
9  (:file "dot")
10  (:file "csv")
11  (:file "json")
12  (:module "parquet"
13  :components
14  ((:file "gen")
15  (:file "pkg")
16  (:file "obj")
17  (:file "io")
18  (:file "rle")
19  (:file "proto")))
20  (:module "xml"
21  :components
22  ((:file "xml")
23  (:file "pkg")
24  (:file "svg")
25  (:file "fixml")))
26  (:module "html"
27  :components
28  ((:file "const")
29  (:file "entity")
30  (:file "html")))
31  (:file "mime")
32  (:file "toml")
33  (:file "arff")
34  (:file "midi")
35  #+png (:file "png")
36  (:file "base64")
37  #+bencode (:file "bencode"))
38  :in-order-to ((test-op (test-op "dat/tests"))))
39 
40 (defsystem :dat/tests
41  :depends-on (:rt :dat)
42  :perform (test-op (o c) (symbol-call :rt :do-tests :dat)))