name: tablestorage version: 0.1.0.1 cabal-version: >= 1.2 build-type: Simple author: Phil Freeman stability: experimental maintainer: Phil Freeman homepage: http://github.com/paf31/tablestorage category: Web, Database, API license: BSD3 copyright: (c) Phil Freeman 2012 data-files: LICENSE, tablestorage.cabal tested-with: GHC==7.0.4 license-file: LICENSE synopsis: Azure Table Storage REST API Wrapper description: A collection of functions to call the methods of the Azure Table Storage REST API from Haskell. Table and entity level functions are supported along with shared key authentication token generation, and error handling. Pagination and projections are currently not supported. library hs-source-dirs: src build-depends: base >= 4 && < 5, SHA, bytestring, utf8-string, base64-bytestring, HTTP, network, time, xml, old-locale ghc-options: -Wall exposed-modules: Network.TableStorage, Network.TableStorage.API, Network.TableStorage.Auth, Network.TableStorage.Development, Network.TableStorage.Types other-modules: Network.TableStorage.Atom, Network.TableStorage.Format, Network.TableStorage.Request, Network.TableStorage.Response, Network.TableStorage.XML