git.fiddlerwoaroof.com
cl-yaml.asd
f2ebcd6f
 (defsystem cl-yaml
   :author "Fernando Borretti <eudoxiahp@gmail.com>"
   :maintainer "Fernando Borretti <eudoxiahp@gmail.com>"
   :license "MIT"
   :version "0.1"
   :homepage "https://github.com/eudoxia0/cl-yaml"
   :bug-tracker "https://github.com/eudoxia0/cl-yaml/issues"
   :source-control (:git "git@github.com:eudoxia0/cl-yaml.git")
059c5c6d
   :depends-on (:cl-libyaml
d39b5127
                :alexandria
ed08c58c
                :cl-ppcre
                :parse-number)
f2ebcd6f
   :components ((:module "src"
                 :serial t
                 :components
                 ((:file "error")
d39b5127
                  (:file "float")
                  (:file "scalar")
f2ebcd6f
                  (:file "parser")
e792d5f3
                  (:file "emitter")
                  (:file "yaml"))))
f2ebcd6f
   :description "A YAML parser and emitter."
   :long-description
   #.(uiop:read-file-string
      (uiop:subpathname *load-pathname* "README.md"))
   :in-order-to ((test-op (test-op cl-yaml-test))))