-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmaiden.asd
33 lines (32 loc) · 1.08 KB
/
maiden.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
(pushnew :deeds-no-startup *features*)
(asdf:defsystem maiden
:version "3.1.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "A modern and extensible chat bot framework."
:homepage "https://Shinmera.github.io/maiden/"
:bug-tracker "https://github.com/Shinmera/maiden/issues"
:source-control (:git "https://github.com/Shinmera/maiden.git")
:serial T
:components ((:file "package")
(:file "toolkit")
(:file "conditions")
(:file "event")
(:file "standard-events")
(:file "entity")
(:file "consumer")
(:file "core")
(:file "agent")
(:file "client")
(:file "documentation"))
:depends-on (:deeds
:verbose
:trivial-garbage
:bordeaux-threads
:closer-mop
:uuid
:form-fiddle
:lambda-fiddle
:documentation-utils
:trivial-indent))