-
Notifications
You must be signed in to change notification settings - Fork 1
/
located.cabal
38 lines (34 loc) · 1.19 KB
/
located.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: located
version: 0.2.0.0
synopsis: Source location helpers
homepage: https://github.com/elliottt/located
license: BSD3
license-file: LICENSE
author: Trevor Elliott
maintainer: [email protected]
copyright: 2016
category: Language
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 7.10.2
extra-source-files: CHANGELOG.md
description:
Types and functions for working with location-tagged tokens. Includes an
implementation of the offsides-rule, to make adding layout to a compiler an
easy task.
source-repository head
type: git
location: git://github.com/elliottt/located.git
library
exposed-modules: Text.Location
Text.Location.Layout
ghc-options: -Wall
other-extensions: DeriveGeneric,
DeriveFunctor,
DeriveFoldable,
DeriveTraversable,
RecordWildCards
build-depends: base >=4.8 && <5,
text
hs-source-dirs: src
default-language: Haskell2010