-
Notifications
You must be signed in to change notification settings - Fork 2
/
fs-api.cabal
96 lines (83 loc) · 2.25 KB
/
fs-api.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
cabal-version: 3.0
name: fs-api
version: 0.2.0.1
synopsis: API for file systems
description: API for file systems.
license: Apache-2.0
license-files:
LICENSE
NOTICE
copyright: 2019-2024 Input Output Global Inc (IOG)
author: IOG Engineering Team
maintainer: [email protected], Joris Dral ([email protected])
category: System
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
tested-with: GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 || ==9.8
source-repository head
type: git
location: https://github.com/input-output-hk/fs-sim
subdir: fs-api
library
hs-source-dirs: src
exposed-modules:
System.FS.API
System.FS.API.Lazy
System.FS.API.Strict
System.FS.API.Types
System.FS.CRC
System.FS.IO
System.FS.IO.Internal
System.FS.IO.Internal.Handle
Util.CallStack
Util.Condense
default-language: Haskell2010
build-depends:
, base >=4.14 && <4.20
, bytestring >=0.10 && <0.13
, containers >=0.5 && <0.7
, deepseq
, digest
, directory >=1.3 && <1.4
, filepath >=1.4 && <1.5
, io-classes >=0.3 && <1.5
, primitive ^>=0.9
, text >=1.2 && <2.2
if os(windows)
hs-source-dirs: src-win32
build-depends: Win32 >=2.6.1.0
else
hs-source-dirs: src-unix
build-depends:
, unix
, unix-bytestring >=0.4.0
exposed-modules: System.FS.IO.Internal.Error
if os(linux)
hs-source-dirs: src-linux
else
hs-source-dirs: src-macos
ghc-options:
-Wall -Wcompat -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wpartial-fields -Widentities
-Wredundant-constraints -Wmissing-export-lists -Wunused-packages
test-suite fs-api-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Test.System.FS.IO
default-language: Haskell2010
build-depends:
, base
, bytestring
, fs-api
, primitive
, tasty
, tasty-quickcheck
, temporary
ghc-options:
-Wall -Wcompat -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wpartial-fields -Widentities
-Wredundant-constraints -Wmissing-export-lists -Wunused-packages
-fno-ignore-asserts