-
Notifications
You must be signed in to change notification settings - Fork 11
/
cl-data-structures.asd
29 lines (28 loc) · 1.1 KB
/
cl-data-structures.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
(in-package #:cl-user)
(asdf:defsystem cl-data-structures
:name "cl-data-structures"
:version "0.0.0"
:license "MIT"
:author "Lisp Mechanics"
:maintainer "Lisp Mechanics"
:depends-on (:iterate :alexandria :serapeum :prove)
:serial T
:pathname "src"
:components ((:file "package")
(:module "api"
:components ((:file "trait-classes")
(:file "generics")
(:file "conditions")))
(:module "utils"
:components ((:file "package")
(:file "macros")
(:file "types")
(:file "ordered-algorithms")
(:file "lists")
(:file "modification-algorithms")))
(:module "dicts"
:components ((:file "packages")
(:file "trait-classes")
(:module "hamt"
:components ((:file "internal")
(:file "api")))))))