blob: d39d5e56959f0d2118305e3c504f925cd00d1ecd (
plain)
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
|
cabal-version: 3.0
name: ox-arrays
version: 0.1.0.0
author: Tom Smeding
license: BSD-3-Clause
build-type: Simple
library
exposed-modules:
Data.Array.Mixed
Data.Array.Nested
Data.Array.Nested.Internal
build-depends:
base >=4.18 && <4.20,
ghc-typelits-knownnat,
ghc-typelits-natnormalise,
orthotope,
vector
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite example
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends:
ox-arrays,
base
hs-source-dirs: example
default-language: Haskell2010
ghc-options: -Wall
|