-
Notifications
You must be signed in to change notification settings - Fork 0
/
streamly-filepath.cabal
60 lines (57 loc) · 1.8 KB
/
streamly-filepath.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
cabal-version: 2.2
name: streamly-filepath
version: 0.1.0
synopsis: Streamly compatibility with filepath package
description:
Facilities for interconverting between the `Path` type from streamly
package and `OsPath` from the `filepath` package.
homepage: https://streamly.composewell.com
bug-reports: https://github.com/composewell/streamly-filepath/issues
license: Apache-2.0
license-file: LICENSE
author: Composewell Technologies
maintainer: [email protected]
copyright: Composewell Technologies
category: Streamly, Streaming, System
stability: Experimental
tested-with: GHC==9.4.4
, GHC==9.2.7
, GHC==9.0.2
, GHC==8.10.7
, GHC==8.8.4
, GHC==8.6.5
build-type: Simple
extra-source-files:
CHANGELOG.md
NOTICE
README.md
source-repository head
type: git
location: https://github.com/composewell/streamly-filepath
common compile-options
default-language: Haskell2010
ghc-options:
-Weverything
-Wno-implicit-prelude
-Wno-missing-deriving-strategies
-Wno-missing-exported-signatures
-Wno-missing-import-lists
-Wno-missing-local-signatures
-Wno-missing-safe-haskell-mode
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-monomorphism-restriction
-Wno-prepositive-qualified-module
-Wno-unsafe
if !impl(ghc < 9.2)
ghc-options:
-Wno-missing-kind-signatures
library
import: compile-options
hs-source-dirs: src
exposed-modules:
Streamly.Compat.OsPath
build-depends:
base >= 4.8 && < 5
, streamly-core >= 0.2 && < 0.3
, filepath >= 1.4.100 && < 1.6