Commit 8560246b12e374b74149d7cde2a1e2259ad65daa

removed sxml dependancy

Commit diff

hunchncells.asd

 
1717 :author "Andy Chambers"
1818 :licence "LLGPL"
1919 :description "A Common Lisp web framework."
20 :depends-on (:hunchentoot :cl-who :cells :utils-kt :s-xml)
20 :depends-on (:hunchentoot :cl-who :cells :utils-kt)
2121 :components ((:file "package")
2222 (:file "macros" :depends-on ("package"))
2323 (:file "html" :depends-on ("macros"))
toggle raw diff

package.lisp

 
11
22
33(defpackage :hunchncells
4 (:use :cl :utils-kt :cells :hunchentoot :cl-who :s-xml))
4 (:use :cl :utils-kt :cells :hunchentoot :cl-who))
55
66(defpackage :hunchncells-user
77 (:use :cl :hunchncells))
toggle raw diff