conserve.asd @ e455c60718db default tip
Remove profiling
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Mon, 13 Apr 2026 15:23:38 -0400 |
| parents | b0a70cc49faf |
| children | (none) |
(asdf:defsystem :conserve :description "Yet Another CSV Library for Common Lisp." :author "Steve Losh <steve@stevelosh.com>" :homepage "https://docs.stevelosh.com/conserve/" :license "MIT/X11" :version "0.0.1" :depends-on () :in-order-to ((asdf:test-op (asdf:test-op :conserve/test))) :serial t :components ((:module "src" :serial t :components ((:file "package") (:file "main"))))) (asdf:defsystem :conserve/test :description "Test suite for conserve." :author "Steve Losh <steve@stevelosh.com>" :license "MIT/X11" :depends-on (:conserve :1am :cl-csv :fare-csv) :serial t :components ((:module "test" :serial t :components ((:file "package") (:file "tests")))) :perform (asdf:test-op (op system) (funcall (read-from-string "conserve/test:run-tests"))))