diff options
| author | Eugen Wissner <belka@caraus.de> | 2019-06-21 10:44:58 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2019-06-21 10:44:58 +0200 |
| commit | 5e9bf9648d891591fcb1f0e1c7b250fb80b1ddc6 (patch) | |
| tree | 0654d194f22f695823c275f43e70eeea564c567b /graphql.cabal | |
| parent | ce169ecef2ff9530817e330df7584c96d6ca6fee (diff) | |
| download | graphql-5e9bf9648d891591fcb1f0e1c7b250fb80b1ddc6.tar.gz | |
Parse queries with megaparsec
Diffstat (limited to 'graphql.cabal')
| -rw-r--r-- | graphql.cabal | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphql.cabal b/graphql.cabal index e7b1e8d..66c4720 100644 --- a/graphql.cabal +++ b/graphql.cabal @@ -4,7 +4,7 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: 5e8ecb58b182478576a725b6da5466c8e71db7dda7735397006e2b14406ee3ad +-- hash: 06d3fa29e37864ef5e4254215c50d95942b4a33b0ea4f4d4c930a071fdcd2872 name: graphql version: 0.3 @@ -46,16 +46,16 @@ library Data.GraphQL.Execute Data.GraphQL.Parser Data.GraphQL.Schema + Language.GraphQL.Lexer other-modules: Paths_graphql hs-source-dirs: ./. build-depends: aeson - , attoparsec , base >=4.7 && <5 + , megaparsec , scientific - , semigroups , text , unordered-containers default-language: Haskell2010 @@ -64,6 +64,7 @@ test-suite tasty type: exitcode-stdio-1.0 main-is: tasty.hs other-modules: + Language.GraphQL.LexerTest Test.StarWars.Data Test.StarWars.QueryTests Test.StarWars.Schema @@ -73,11 +74,10 @@ test-suite tasty ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: aeson - , attoparsec , base >=4.7 && <5 , graphql + , megaparsec , raw-strings-qq - , semigroups , tasty , tasty-hunit , text |
