Updated version to 1.3.3.
[zs3.git] / zs3.asd
blob7172674f73255f46b444e0c80d839b03c56e7d74
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                #:alexandria
33                #:cxml
34                #:ironclad
35                #:puri
36                #:cl-base64)
37   :version "1.3.3"
38   :description "A Common Lisp library for working with Amazon's Simple
39   Storage Service (S3) and CloudFront content delivery service."
40   :author "Zach Beane <xach@xach.com>"
41   :license "BSD"
42   :serial t
43   :components ((:file "package")
44                (:file "utils")
45                (:file "crypto")
46                (:file "xml-binding")
47                (:file "xml-output")
48                (:file "credentials")
49                (:file "post")
50                (:file "redirects")
51                (:file "request")
52                (:file "response")
53                (:file "objects")
54                (:file "bucket-listing")
55                (:file "errors")
56                (:file "acl")
57                (:file "logging")
58                (:file "location")
59                (:file "interface")
60                (:file "cloudfront")
61                (:file "lifecycle")))