nrepl.asd @ 256edcc8ea1e

Use Dissect to clean up the error handling tremendously
author Steve Losh <steve@stevelosh.com>
date Sun, 21 Aug 2016 13:34:46 +0000
parents e342c4a78a57
children 8b0e540e23e7
(asdf:defsystem #:nrepl
  :name "nrepl"
  :description "An implementation of the NREPL protocol for Common Lisp."

  :author "Steve Losh <steve@stevelosh.com>"
  :maintainer "Steve Losh <steve@stevelosh.com>"

  :license "EPL"
  :version "0.0.1"

  :depends-on (#:bencode
               #:usocket
               #:flexi-streams
               #:bordeaux-threads
               #:uuid
               #:fset
               #:cl-ppcre
               #:split-sequence
               #:dissect
               #+sbcl :sb-introspect)

  :serial t
  :components
  ((:file "package")
   (:module "src"
    :components ((:file "utils")
                 (:file "sockets")
                 (:file "evaluation")
                 (:module "middleware"
                  :components ((:file "core")
                               (:file "describe")
                               (:file "documentation")
                               (:file "macroexpand")
                               (:file "eval")
                               (:file "load-file")
                               (:file "session")))
                 (:file "server")))))