name: record version: 0.1.5 synopsis: First class records implemented with quasi-quotation description: An API of just two quasi-quoters, providing a full-scale solution to the notorious records problem of Haskell. . Links: . * . . * . . category: Control, Data Structures homepage: https://github.com/nikita-volkov/record bug-reports: https://github.com/nikita-volkov/record/issues author: Nikita Volkov maintainer: Nikita Volkov copyright: (c) 2015, Nikita Volkov license: MIT license-file: LICENSE build-type: Custom cabal-version: >=1.10 extra-source-files: CHANGELOG.md source-repository head type: git location: git://github.com/nikita-volkov/record.git library hs-source-dirs: library ghc-options: -funbox-strict-fields default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples default-language: Haskell2010 other-modules: Record.Parser exposed-modules: Record.Types Record.Lens Record build-depends: -- attoparsec >= 0.12 && < 0.13, -- text, -- template-haskell, -- transformers >= 0.2 && < 0.5, base-prelude >= 0.1 && < 0.2, base >= 4.6 && < 4.9 test-suite doctest type: exitcode-stdio-1.0 hs-source-dirs: doctest main-is: Main.hs ghc-options: -threaded "-with-rtsopts=-N" -funbox-strict-fields build-depends: doctest == 0.9.*, directory == 1.2.*, filepath == 1.3.*, base-prelude, base default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators default-language: Haskell2010 -- Well, it's not a benchmark actually, -- but in Cabal there's no better way to specify an executable, -- which is not intended for distribution. benchmark demo type: exitcode-stdio-1.0 hs-source-dirs: demo main-is: Main.hs ghc-options: -O2 -threaded "-with-rtsopts=-N" -funbox-strict-fields -ddump-splices default-language: Haskell2010 build-depends: record, base-prelude