pinboard-0.6: pinboard.cabal
name: pinboard
version: 0.6
synopsis: Access to the Pinboard API
license: MIT
license-file: LICENSE
author: Jon Schoning
maintainer: jonschoning@gmail.com
copyright: Copyright (c) 2015 Jon Schoning
homepage: https://github.com/jonschoning/pinboard
bug-reports: https://github.com/jonschoning/pinboard/issues
category: Network APIs
build-type: Simple
cabal-version: >=1.10
Description:
.
The Pinboard API is a way to interact programatically with
your bookmarks, notes and other Pinboard data. This
library wraps the API exposing functions and data
structures suitable for usage in Haskell programs.
.
Example:
.
> import Pinboard
>
> main :: IO ()
> main = do
> let config = fromApiToken "api token"
> result <- runPinboard config $ getPostsRecent Nothing Nothing
> case result of
> Right details -> print details
> Left pinboardError -> print pinboardError
.
library
hs-source-dirs: src
build-depends: base >=4.6 && < 5.0
, aeson
, bytestring
, containers
, either
, HsOpenSSL
, http-streams
, http-types
, io-streams
, mtl >= 2.1.3.1
, network
, old-locale
, random >= 1.1
, text
, time
, transformers
, unordered-containers
default-language: Haskell2010
other-modules:
exposed-modules:
Pinboard
Pinboard.Api
Pinboard.ApiRequest
Pinboard.ApiTypes
Pinboard.Client
Pinboard.Client.Error
Pinboard.Client.Types
Pinboard.Client.Util
ghc-options: -Wall -rtsopts
source-repository head
type: git
location: git://github.com/jonschoning/pinboard.git