forked from Shinmera/chirp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchirp-core.asd
42 lines (42 loc) · 1.32 KB
/
chirp-core.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
(asdf:defsystem chirp-core
:version "0.2.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "Core component of the chirp twitter client, excluding the backend."
:serial T
:components ((:file "package")
(:file "indent")
(:file "toolkit")
(:file "oauth")
(:file "location")
(:file "trends")
(:file "entities")
(:file "help")
(:file "cursor")
(:file "user")
(:file "account")
(:file "blocks")
(:file "suggestions")
(:file "media")
(:file "statuses")
(:file "timelines")
(:file "direct-messages")
(:file "friends")
(:file "favorites")
(:file "saved-searches")
(:file "search")
(:file "lists")
(:file "stream")
(:file "generics")
(:file "collections"))
:depends-on (:yason
:split-sequence
:uuid
:ironclad
:flexi-streams
:local-time
:cl-base64
:cl-ppcre
:alexandria
:babel))