-
Notifications
You must be signed in to change notification settings - Fork 25
/
vector-sized.cabal
54 lines (52 loc) · 1.57 KB
/
vector-sized.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
53
54
cabal-version: 3.0
name: vector-sized
version: 1.6.1
synopsis: Size tagged vectors
description: Please see README.md
category: Data
homepage: https://github.com/expipiplus1/vector-sized#readme
bug-reports: https://github.com/expipiplus1/vector-sized/issues
author: Ellie Hermaszewska
maintainer: [email protected]
copyright: 2016 Ellie Hermaszewska
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with: GHC ==8.10.7 || ==9.0.1 || ==9.2.1
extra-source-files:
readme.md
changelog.md
default.nix
source-repository head
type: git
location: https://github.com/expipiplus1/vector-sized
library
exposed-modules:
Data.Vector.Generic.Mutable.Sized
Data.Vector.Generic.Mutable.Sized.Internal
Data.Vector.Generic.Sized
Data.Vector.Generic.Sized.Internal
Data.Vector.Mutable.Sized
Data.Vector.Primitive.Mutable.Sized
Data.Vector.Primitive.Sized
Data.Vector.Sized
Data.Vector.Storable.Mutable.Sized
Data.Vector.Storable.Sized
Data.Vector.Unboxed.Mutable.Sized
Data.Vector.Unboxed.Sized
hs-source-dirs:
src
build-depends:
adjunctions >=4.3 && <4.5
, base >=4.14 && <5
, binary >=0.8.3.0
, comonad >=4 && <6
, deepseq >=1.1 && <1.6
, distributive >=0.5 && <0.7
, finite-typelits >=0.1
, hashable >=1.2.4.0
, indexed-list-literals >=0.2.0.0
, primitive >=0.5 && <0.10
, indexed-traversable >=0.1.2 && <0.2
, vector >=0.12 && <0.14
default-language: Haskell2010