Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check in hpack-generated cabal file to support cabal install workflow #18

Merged
merged 1 commit into from
Dec 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.stack-work/
graphql-parser.cabal
*~
ws
TAGS
121 changes: 121 additions & 0 deletions graphql-parser.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
-- This file has been generated from package.yaml by hpack version 0.9.1.
--
-- see: https://github.com/sol/hpack

name: graphql-parser
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/hasura/graphql-parser-hs#readme>
homepage: https://github.com/hasura/graphql-parser-hs#readme
bug-reports: https://github.com/hasura/graphql-parser-hs/issues
author: Vamshi Surabhi
maintainer: [email protected]
copyright: 2018 Hasura Technologies Pvt. Ltd.
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10

extra-source-files:
ChangeLog.md
README.md

source-repository head
type: git
location: https://github.com/hasura/graphql-parser-hs

library
hs-source-dirs:
src
default-extensions: NoImplicitPrelude
ghc-options: -O2 -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns
build-depends:
base >= 4.7 && < 5
, protolude
, attoparsec
, text
, aeson
, scientific
, containers
, unordered-containers
, vector
, template-haskell
, th-lift-instances
, filepath
, prettyprinter
, bytestring
, text-builder
, hedgehog
, regex-tdfa >= 1.2
exposed-modules:
Language.GraphQL.Draft.Generator.Document
Language.GraphQL.Draft.Generator.Primitives
Language.GraphQL.Draft.Generator.Selection
Language.GraphQL.Draft.Generator.TypeDefinition
Language.GraphQL.Draft.Instances
Language.GraphQL.Draft.Parser
Language.GraphQL.Draft.Printer
Language.GraphQL.Draft.Printer.ByteString
Language.GraphQL.Draft.Printer.LazyText
Language.GraphQL.Draft.Printer.Pretty
Language.GraphQL.Draft.Printer.Text
Language.GraphQL.Draft.Syntax
Language.GraphQL.Draft.TH
default-language: Haskell2010

test-suite graphql-parser-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
default-extensions: NoImplicitPrelude
ghc-options: -O2 -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >= 4.7 && < 5
, protolude
, attoparsec
, text
, aeson
, scientific
, containers
, unordered-containers
, vector
, template-haskell
, th-lift-instances
, filepath
, prettyprinter
, bytestring
, text-builder
, hedgehog
, regex-tdfa >= 1.2
, graphql-parser
, hedgehog
default-language: Haskell2010

benchmark graphql-parser-bench
type: exitcode-stdio-1.0
main-is: Benchmark.hs
hs-source-dirs:
bench
default-extensions: NoImplicitPrelude
ghc-options: -O2 -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wall -O2
build-depends:
base >= 4.7 && < 5
, protolude
, attoparsec
, text
, aeson
, scientific
, containers
, unordered-containers
, vector
, template-haskell
, th-lift-instances
, filepath
, prettyprinter
, bytestring
, text-builder
, hedgehog
, regex-tdfa >= 1.2
, graphql-parser
, criterion
default-language: Haskell2010