Updated version to 1.1.13.
[zs3.git] / zs3.asd
bloba00839214a7c9e4eedcb8a74bc708dd5430f256c
1 ;;;;
2 ;;;; Copyright (c) 2008 Zachary Beane, All Rights Reserved
3 ;;;;
4 ;;;; Redistribution and use in source and binary forms, with or without
5 ;;;; modification, are permitted provided that the following conditions
6 ;;;; are met:
7 ;;;;
8 ;;;;   * Redistributions of source code must retain the above copyright
9 ;;;;     notice, this list of conditions and the following disclaimer.
10 ;;;;
11 ;;;;   * Redistributions in binary form must reproduce the above
12 ;;;;     copyright notice, this list of conditions and the following
13 ;;;;     disclaimer in the documentation and/or other materials
14 ;;;;     provided with the distribution.
15 ;;;;
16 ;;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
17 ;;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 ;;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 ;;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 ;;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 ;;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
22 ;;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 ;;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ;;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 ;;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 ;;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 ;;;;
28 ;;;; zs3.asd
30 (asdf:defsystem #:zs3
31   :depends-on (#:drakma
32                #:cxml
33                #:ironclad
34                #:puri
35                #:cl-base64)
36                                                                  :version "1.1.13"
37   :description "A Common Lisp library for working with Amazon's Simple
38   Storage Service (S3) and CloudFront content delivery service."
39   :author "Zach Beane <xach@xach.com>"
40   :serial t
41   :components ((:file "package")
42                (:file "utils")
43                (:file "crypto")
44                (:file "xml-binding")
45                (:file "credentials")
46                (:file "post")
47                (:file "redirects")
48                (:file "request")
49                (:file "response")
50                (:file "objects")
51                (:file "bucket-listing")
52                (:file "errors")
53                (:file "acl")
54                (:file "logging")
55                (:file "location")
56                (:file "interface")
57                (:file "lifecycle")
58                (:file "cloudfront")))