aboutsummaryrefslogtreecommitdiff
path: root/chains.asd
diff options
context:
space:
mode:
authorThomas Albers Raviola <thomas@thomaslabs.org>2024-05-13 21:29:31 +0200
committerThomas Albers Raviola <thomas@thomaslabs.org>2024-05-13 21:29:31 +0200
commitf5cb35b87255ebbe2d322bcedde6bc7d5f6aebae (patch)
tree161ec305fb4bef388dee6f50ed1c3ed842d55a2b /chains.asd
* Initial commit
Diffstat (limited to 'chains.asd')
-rw-r--r--chains.asd19
1 files changed, 19 insertions, 0 deletions
diff --git a/chains.asd b/chains.asd
new file mode 100644
index 0000000..82df35a
--- /dev/null
+++ b/chains.asd
@@ -0,0 +1,19 @@
+;;;; chains.asd
+
+(asdf:defsystem #:chains
+ :description ""
+ :author ("")
+ :license ""
+ :version "0.0.1"
+ :serial t
+ :depends-on (:split-sequence
+ :cl-ppcre
+ :alexandria
+ :trivia
+ :spinneret)
+ :pathname "src"
+ :components ((:file "package")
+ (:file "types")
+ (:file "parser")
+ (:file "eval")
+ (:file "core")))