File: isomorphism-class.cabal

package info (click to toggle)
haskell-isomorphism-class 0.1.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 88 kB
  • sloc: haskell: 529; makefile: 5
file content (65 lines) | stat: -rw-r--r-- 1,891 bytes parent folder | download
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
53
54
55
56
57
58
59
60
61
62
63
64
65
cabal-version: 3.0
name:          isomorphism-class
version:       0.1.1
synopsis:      Isomorphism typeclass solving the conversion problem
description:   Lawful typeclass for lossless conversion between types.
category:      Conversion
homepage:      https://github.com/nikita-volkov/isomorphism-class
bug-reports:   https://github.com/nikita-volkov/isomorphism-class/issues
author:        Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer:    Nikita Volkov <nikita.y.volkov@mail.ru>
copyright:     (c) 2022 Nikita Volkov
license:       MIT
license-file:  LICENSE

source-repository head
  type:     git
  location: git://github.com/nikita-volkov/isomorphism-class.git

common language-settings
  default-language:   Haskell2010
  default-extensions:
    NoImplicitPrelude
    FlexibleContexts
    FlexibleInstances
    MagicHash
    MultiParamTypeClasses
    ScopedTypeVariables
    TypeApplications
    UndecidableSuperClasses

library
  import:          language-settings
  hs-source-dirs:  library
  exposed-modules: IsomorphismClass
  other-modules:
    IsomorphismClass.Prelude
    IsomorphismClass.TextCompat.Array

  build-depends:
    , base >=4.12 && <5
    , bytestring >=0.10 && <0.13
    , containers >=0.6 && <0.8
    , hashable >=1 && <2
    , primitive >=0.7.3 && <0.10
    , text >=1.2 && <2.2
    , unordered-containers >=0.2 && <0.3
    , vector >=0.12 && <0.14

test-suite test
  import:         language-settings
  type:           exitcode-stdio-1.0
  hs-source-dirs: test
  main-is:        Main.hs
  other-modules:  Test.ExtraInstances
  build-depends:
    , bytestring >=0.11.1.0 && <0.13
    , isomorphism-class
    , primitive >=0.7.3 && <0.10
    , QuickCheck >=2.13 && <3
    , quickcheck-instances >=0.3.28 && <0.4
    , rebase >=1.15 && <2
    , tasty >=1.2.3 && <2
    , tasty-quickcheck >=0.10.1 && <0.11
    , text >=1.2 && <3
    , vector >=0.12 && <0.14