Cabal revisions of influxdb-1.0.0
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-name: influxdb-version: 1.0.0-synopsis: Haskell client library for InfluxDB-description: Haskell client library for InfluxDB-homepage: https://github.com/maoe/influxdb-haskell-license: BSD3-license-file: LICENSE-author: Mitsutoshi Aoe-maintainer: Mitsutoshi Aoe <maoe@foldr.in>-copyright: Copyright (C) 2014-2017 Mitsutoshi Aoe-category: Database-build-type: Simple-cabal-version: >= 1.10-tested-with: GHC >= 7.10 && < 8.1--extra-source-files:- README.md- CHANGELOG.md--flag examples- description: Build examples- default: False- manual: True--flag http-client-05- default: True- manual: False--library- exposed-modules:- Database.InfluxDB- Database.InfluxDB.Format- Database.InfluxDB.JSON- Database.InfluxDB.Line- Database.InfluxDB.Manage- Database.InfluxDB.Ping- Database.InfluxDB.Query- Database.InfluxDB.Types- Database.InfluxDB.Write- Database.InfluxDB.Write.UDP- other-modules:- Network.HTTP.Client.Compat- other-extensions:- BangPatterns- CPP- DataKinds- DeriveDataTypeable- DeriveGeneric- ExistentialQuantification- FlexibleInstances- FunctionalDependencies- GADTs- GeneralizedNewtypeDeriving- KindSignatures- LambdaCase- MultiParamTypeClasses- NamedFieldPuns- OverloadedStrings- RecordWildCards- ScopedTypeVariables- StandaloneDeriving- TemplateHaskell- ViewPatterns- ghc-options: -Wall- build-depends:- base >= 4 && < 4.10- , aeson >= 0.7 && < 1.2- , attoparsec < 0.14- , bytestring >= 0.10 && < 0.11- , clock >= 0.7 && < 0.8- , containers >= 0.5 && < 0.6- , foldl < 1.3- , http-types >= 0.8.6 && < 0.10- , lens >= 4.9 && < 4.16- , network >= 2.6 && < 2.7- , optional-args >= 1.0 && < 1.1- , scientific >= 0.3.3 && < 0.4- , text < 1.3- , time >= 1.5 && < 1.9- , unordered-containers < 0.3- , vector >= 0.10 && < 0.13- if flag(http-client-05)- build-depends: http-client >= 0.5 && < 0.6- else- build-depends:- data-default-class- , http-client >= 0.4.10 && < 0.5- hs-source-dirs: src- default-language: Haskell2010--test-suite test-suite- type: exitcode-stdio-1.0- main-is: test-suite.hs- build-depends:- base- , http-client- , HUnit- , influxdb- , mtl- , tasty- , tasty-hunit == 0.9.*- , tasty-quickcheck- , tasty-th- , text- , vector- hs-source-dirs: tests- default-language: Haskell2010--executable influx-random-points- if !flag(examples)- buildable: False- hs-source-dirs: examples- main-is: random-points.hs- ghc-options: -Wall- build-depends:- aeson- , base- , bytestring- , containers- , foldl >= 1.1.3- , http-client- , influxdb- , lens- , mwc-random- , optional-args- , text- , time- , vector- default-language: Haskell2010--executable influx-write-udp- if !flag(examples)- buildable: False- hs-source-dirs: examples- main-is: write-udp.hs- ghc-options: -Wall- build-depends:- base- , containers- , influxdb- , lens- , network- , time- default-language: Haskell2010--source-repository head- type: git- branch: develop- location: https://github.com/maoe/influxdb-haskell.git--source-repository this- type: git- tag: v1.0.0- location: https://github.com/maoe/influxdb-haskell.git+name: influxdb +version: 1.0.0 +x-revision: 1 +synopsis: Haskell client library for InfluxDB +description: Haskell client library for InfluxDB +homepage: https://github.com/maoe/influxdb-haskell +license: BSD3 +license-file: LICENSE +author: Mitsutoshi Aoe +maintainer: Mitsutoshi Aoe <maoe@foldr.in> +copyright: Copyright (C) 2014-2017 Mitsutoshi Aoe +category: Database +build-type: Simple +cabal-version: >= 1.10 +tested-with: GHC >= 7.10 && < 8.1 + +extra-source-files: + README.md + CHANGELOG.md + +flag examples + description: Build examples + default: False + manual: True + +flag http-client-05 + default: True + manual: False + +library + exposed-modules: + Database.InfluxDB + Database.InfluxDB.Format + Database.InfluxDB.JSON + Database.InfluxDB.Line + Database.InfluxDB.Manage + Database.InfluxDB.Ping + Database.InfluxDB.Query + Database.InfluxDB.Types + Database.InfluxDB.Write + Database.InfluxDB.Write.UDP + other-modules: + Network.HTTP.Client.Compat + other-extensions: + BangPatterns + CPP + DataKinds + DeriveDataTypeable + DeriveGeneric + ExistentialQuantification + FlexibleInstances + FunctionalDependencies + GADTs + GeneralizedNewtypeDeriving + KindSignatures + LambdaCase + MultiParamTypeClasses + NamedFieldPuns + OverloadedStrings + RecordWildCards + ScopedTypeVariables + StandaloneDeriving + TemplateHaskell + ViewPatterns + ghc-options: -Wall + build-depends: + base >= 4.8 && < 4.10 + , aeson >= 0.7 && < 1.2 + , attoparsec < 0.14 + , bytestring >= 0.10 && < 0.11 + , clock >= 0.7 && < 0.8 + , containers >= 0.5 && < 0.6 + , foldl < 1.3 + , http-types >= 0.8.6 && < 0.10 + , lens >= 4.9 && < 4.16 + , network >= 2.6 && < 2.7 + , optional-args >= 1.0 && < 1.1 + , scientific >= 0.3.3 && < 0.4 + , text < 1.3 + , time >= 1.5 && < 1.9 + , unordered-containers < 0.3 + , vector >= 0.10 && < 0.13 + if flag(http-client-05) + build-depends: http-client >= 0.5 && < 0.6 + else + build-depends: + data-default-class + , http-client >= 0.4.10 && < 0.5 + hs-source-dirs: src + default-language: Haskell2010 + +test-suite test-suite + type: exitcode-stdio-1.0 + main-is: test-suite.hs + build-depends: + base + , http-client + , HUnit + , influxdb + , mtl + , tasty + , tasty-hunit == 0.9.* + , tasty-quickcheck + , tasty-th + , text + , vector + hs-source-dirs: tests + default-language: Haskell2010 + +executable influx-random-points + if !flag(examples) + buildable: False + hs-source-dirs: examples + main-is: random-points.hs + ghc-options: -Wall + build-depends: + aeson + , base + , bytestring + , containers + , foldl >= 1.1.3 + , http-client + , influxdb + , lens + , mwc-random + , optional-args + , text + , time + , vector + default-language: Haskell2010 + +executable influx-write-udp + if !flag(examples) + buildable: False + hs-source-dirs: examples + main-is: write-udp.hs + ghc-options: -Wall + build-depends: + base + , containers + , influxdb + , lens + , network + , time + default-language: Haskell2010 + +source-repository head + type: git + branch: develop + location: https://github.com/maoe/influxdb-haskell.git + +source-repository this + type: git + tag: v1.0.0 + location: https://github.com/maoe/influxdb-haskell.git