name: tablestorage
version: 0.1
cabal-version: >= 1.6
build-type: Simple
author: Phil Freeman <paf31-at-cantab.net>
stability: experimental
maintainer: Phil Freeman <paf31-at-cantab.net>
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.
source-repository head
type: git
location: git://github.com/paf31/tablestorage.git
library
hs-source-dirs: src
build-depends:
base >= 4 && < 5,
SHA,
bytestring,
utf8-string,
base64-bytestring,
HTTP,
network,
time,
haskell98,
xml
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