diff options
author | Colin Okay <okay@toyful.space> | 2022-02-09 19:02:52 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-02-09 19:02:52 -0600 |
commit | 9596c415ed45f95f109ecf48813401bad08229b9 (patch) | |
tree | 5e21b9e82da5d5f3eb3477f9425dfffad79aa35c | |
parent | 7675e07d526f889e7917b8f2644ee21603103299 (diff) |
added lambda-riffs, ironclad, uuid to dependences
-rw-r--r-- | clpmfile | 4 | ||||
-rw-r--r-- | clpmfile.lock | 27 | ||||
-rw-r--r-- | oneliners.api.asd | 5 |
3 files changed, 32 insertions, 4 deletions
@@ -8,3 +8,7 @@ (:github "lazybones" :path "cbeo/lazybones" :branch "master") + +(:github "lambda-riffs" + :path "cbeo/lambda-riffs" + :branch "master") diff --git a/clpmfile.lock b/clpmfile.lock index 5a28a41..e3fdf30 100644 --- a/clpmfile.lock +++ b/clpmfile.lock @@ -11,6 +11,8 @@ :sources (:implicit-file :type :file-system :system-files ("oneliners.api.asd")) (:implicit-vcs :type :vcs :projects + (("lambda-riffs" :github :path "cbeo/lambda-riffs"))) +(:implicit-vcs :type :vcs :projects (("lazybones" :github :path "cbeo/lazybones"))) ("quicklisp" :url "https://beta.quicklisp.org/dist/quicklisp.txt" :type :quicklisp) @@ -21,6 +23,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; :requirements +(:project :name "lambda-riffs" :branch "master" :source :implicit-vcs) (:project :name "lazybones" :branch "master" :source :implicit-vcs) (:asd-file :name "oneliners.api.asd") @@ -60,8 +63,11 @@ ("flexi-streams")) ("hunchentoot" :version "2020-06-10" :source "quicklisp" :systems ("hunchentoot")) +("ironclad" :version "2021-10-21" :source "quicklisp" :systems ("ironclad")) ("jonathan" :version "2020-09-25" :source "quicklisp" :systems ("jonathan")) -("lazybones" :version (:commit "6225e142525d02888d0a1aa83fb716ddb58db907") +("lambda-riffs" :version (:commit "f7b3c081f2361f7370c80e7ff4a432241f34ce55") + :source :implicit-vcs :systems ("lambda-riffs")) +("lazybones" :version (:commit "aec0893df2f4bb8fa8da7c71cb8dca09c0bd5f86") :source :implicit-vcs :systems ("lazybones" "lazybones-hunchentoot")) ("lisp-namespace" :version "2021-10-21" :source "quicklisp" :systems ("lisp-namespace")) @@ -91,6 +97,7 @@ ("trivial-utf-8")) ("unit-test" :version "2012-05-20" :source "quicklisp" :systems ("unit-test")) ("usocket" :version "2019-12-27" :source "quicklisp" :systems ("usocket")) +("uuid" :version "2020-07-15" :source "quicklisp" :systems ("uuid")) ("yason" :version "2019-12-27" :source "quicklisp" :systems ("yason")) @@ -128,6 +135,7 @@ ((:system :name "bknr.datastore") (:system :name "bknr.utils"))) ("bordeaux-threads" ((:system :name "rove") (:system :name "bordeaux-threads")) + ((:system :name "ironclad") (:system :name "bordeaux-threads")) ((:system :name "hunchentoot") (:system :name "bordeaux-threads")) ((:system :name "cl-fad") (:system :name "bordeaux-threads")) ((:system :name "cl+ssl") (:system :name "bordeaux-threads")) @@ -193,13 +201,24 @@ ("hunchentoot" ((:system :name "lazybones-hunchentoot") (:system :name "hunchentoot"))) +("ironclad" ((:system :name "uuid") (:system :name "ironclad")) + ((:system :name "oneliners.api") (:system :name "ironclad"))) + ("jonathan" ((:system :name "oneliners.api") (:system :name "jonathan")) ((:system :name "lazybones") (:system :name "jonathan"))) +("lambda-riffs" + ((:system :name "oneliners.api") (:system :name "lambda-riffs")) + (t + (:project :name "lambda-riffs" :commit + "f7b3c081f2361f7370c80e7ff4a432241f34ce55" :source :implicit-vcs))) + ("lazybones" ((:system :name "oneliners.api") (:system :name "lazybones-hunchentoot")) ((:system :name "lazybones-hunchentoot") (:system :name "lazybones")) - (t (:project :name "lazybones" :branch "master" :source :implicit-vcs))) + (t + (:project :name "lazybones" :commit + "aec0893df2f4bb8fa8da7c71cb8dca09c0bd5f86" :source :implicit-vcs))) ("lisp-namespace" ((:system :name "lazybones") (:system :name "lisp-namespace"))) @@ -246,7 +265,7 @@ ("trivial-types" ((:system :name "jonathan") (:system :name "trivial-types")) ((:system :name "cl-syntax") (:system :name "trivial-types"))) -("trivial-utf-8" +("trivial-utf-8" ((:system :name "uuid") (:system :name "trivial-utf-8")) ((:system :name "bknr.datastore") (:system :name "trivial-utf-8"))) ("unit-test" ((:system :name "bknr.datastore") (:system :name "unit-test"))) @@ -254,5 +273,7 @@ ("usocket" ((:system :name "hunchentoot") (:system :name "usocket")) ((:system :name "cl+ssl") (:system :name "usocket"))) +("uuid" ((:system :name "oneliners.api") (:system :name "uuid"))) + ("yason" ((:system :name "bknr.datastore") (:system :name "yason"))) diff --git a/oneliners.api.asd b/oneliners.api.asd index 3a6b48f..751f573 100644 --- a/oneliners.api.asd +++ b/oneliners.api.asd @@ -4,7 +4,10 @@ :license "AGPLv3" :depends-on ("lazybones-hunchentoot" "bknr.datastore" - "jonathan") + "jonathan" + "ironclad" + "uuid" + "lambda-riffs") :components ((:module "src" :components ((:file "main")))) |