-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathxml-lens.cabal
32 lines (30 loc) · 1.06 KB
/
xml-lens.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
cabal-version: 2.4
name: xml-lens
version: 0.3.1
synopsis: Lenses, traversals, and prisms for xml-conduit
description: This package provides DOM selectors based on lenses and prisms. See README.md for examples
homepage: https://github.com/fumieval/xml-lens
bug-reports: https://github.com/fumieval/xml-lens/issues
license: BSD-3-Clause
license-file: LICENSE
author: Fumiaki Kinoshita
maintainer: Fumiaki Kinoshita <[email protected]>
copyright: Copyright (C) 2021 Fumiaki Kinoshita
category: XML
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/fumieval/xml-lens.git
library
default-language: Haskell2010
ghc-options: -Wall
exposed-modules: Text.XML.Lens
build-depends: base ==4.*
, lens >= 4.0 && < 5.4
, containers >= 0.4.0 && < 0.7
, text >= 0.7 && < 1.3 || >= 2 && < 2.1
, xml-conduit >= 1.1 && < 1.10
, case-insensitive