forked from henrytill/lens-toml-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlens-toml-parser.cabal
52 lines (47 loc) · 1.7 KB
/
lens-toml-parser.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
-- Initial lens-toml-parser.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: lens-toml-parser
version: 0.2.0.0
synopsis: Lenses for toml-parser
description: This library provides lenses for toml-parser.
license: ISC
license-file: LICENSE
author: Henry Till
maintainer: [email protected]
homepage: https://github.com/henrytill/lens-toml-parser
copyright: Copyright (c) 2017-2024, Henry Till
category: Language, Lenses
build-type: Simple
cabal-version: >=1.10
tested-with: GHC ==9.4.8 || ==9.6.3 || ==9.8.1
extra-source-files:
.gitignore
ChangeLog.md
README.md
example/example-v0.4.0.toml
source-repository head
type: git
location: https://github.com/henrytill/lens-toml-parser.git
library
exposed-modules: Toml.Lens
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <5
, time >=1.5 && <1.14
, profunctors >=5.2 && <5.7
, toml-parser >=1.1 && <1.4
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base >=4.8 && <5
, containers >=0.5 && <0.7
, dwergaz >=0.2 && <0.3
, toml-parser >=1.1 && <1.4
, lens-family >=2.1 && <2.2
, lens-toml-parser
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall