-
Notifications
You must be signed in to change notification settings - Fork 2
/
fs-api.cabal
98 lines (87 loc) · 2.63 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
97
98
cabal-version: 3.0
name: fs-api
version: 0.3.0.1
synopsis: Abstract interface for the file system
description: Abstract interface for the file system.
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])
homepage: https://github.com/input-output-hk/fs-sim
bug-reports: https://github.com/input-output-hk/fs-sim/issues
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 || ==9.10
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.CallStack
System.FS.Condense
System.FS.CRC
System.FS.IO
System.FS.IO.Handle
default-language: Haskell2010
build-depends:
, base >=4.14 && <4.21
, bytestring ^>=0.10 || ^>=0.11 || ^>=0.12
, containers ^>=0.5 || ^>=0.6 || ^>=0.7
, deepseq ^>=1.4 || ^>=1.5
, digest ^>=0.0
, directory ^>=1.3
, filepath ^>=1.4 || ^>=1.5
, io-classes ^>=1.6 || ^>=1.7
, primitive ^>=0.9
, safe-wild-cards ^>=1.0
, text ^>=1.2 || ^>=2.0 || ^>=2.1
if os(windows)
hs-source-dirs: src-win32
exposed-modules: System.FS.IO.Windows
build-depends: Win32 >=2.6.1.0
-- every other distribution is handled like it is Unix-based
else
hs-source-dirs: src-unix
exposed-modules: System.FS.IO.Unix
build-depends:
, unix ^>=2.7 || ^>=2.8
, unix-bytestring ^>=0.4
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.API.FsPath
Test.System.FS.IO
default-language: Haskell2010
build-depends:
, base
, bytestring
, filepath
, fs-api
, primitive
, tasty
, tasty-quickcheck
, temporary
, text
ghc-options:
-Wall -Wcompat -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wpartial-fields -Widentities
-Wredundant-constraints -Wmissing-export-lists -Wunused-packages
-fno-ignore-asserts