-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdefaultable-map.cabal
32 lines (30 loc) · 1.16 KB
/
defaultable-map.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: 3.0
name: defaultable-map
version: 1.0.2
synopsis: Applicative maps
description:
This package provides a `Defaultable` type constructor that
wraps any `Map`-like type to add an optional default value.
Wrapping a `Map`-like type in this way permits a valid
`Applicative` instance, so you can think of this as an
"`Applicative` map" package.
bug-reports: https://github.com/Gabriella439/defaultable-map/issues
license: BSD-3-Clause
license-file: LICENSE
author: Gabriella Gonzalez
copyright: 2022 Gabriella Gonzalez
maintainer: [email protected]
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/Gabriella439/defaultable-map
library
exposed-modules: Defaultable.Map
, Defaultable.Map.Generalized
build-depends: base >= 4.14.3.0 && < 5
, containers < 0.8
, deepseq >= 1.4.0.0 && < 1.5
, semigroupoids < 6.1
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall