streamly-filesystem/streamly-filesystem.cabal

59 lines
2.2 KiB
Plaintext
Raw Permalink Normal View History

2020-01-29 15:38:35 +00:00
cabal-version: >=1.10
name: streamly-filesytem
version: 0.1.0.0
synopsis: Beautiful file streaming
-- description:
bug-reports: https://github.com/hasufell/streamly-filesystem/issues
license: BSD3
license-file: LICENSE
author: Julian Ospald <hasufell@posteo.de>
maintainer: Julian Ospald <hasufell@posteo.de>
copyright: Julian Ospald <hasufell@posteo.de> 2020
category: Streaming
build-type: Simple
extra-source-files: CHANGELOG.md
2020-01-29 20:26:45 +00:00
library streamly-filesystem
2020-01-29 21:42:23 +00:00
if os(linux)
exposed-modules: Streamly.External.FileSystem.DirStream.Posix
2020-01-29 22:59:50 +00:00
build-depends: hpath-posix >= 0.13
2020-01-29 21:42:23 +00:00
, unix >= 2.7
exposed-modules: Streamly.External.FileSystem.Handle
2020-01-29 15:38:35 +00:00
-- other-modules:
-- other-extensions:
build-depends: base >= 4.12 && < 5
, bytestring >= 0.10
, safe-exceptions >= 0.1
, streamly >= 0.7
, streamly-bytestring >= 0.1.0.1
, word8 >= 0.1.3
hs-source-dirs: src
default-language: Haskell2010
GHC-Options: -Wall -O2 -fspec-constr-recursive=16 -fmax-worker-args=16
2020-01-29 20:02:45 +00:00
test-suite sf-test
2020-01-29 21:42:23 +00:00
if os(linux)
2020-01-29 22:59:50 +00:00
build-depends: hpath-posix >= 0.13
2020-01-29 21:42:23 +00:00
, unix >= 2.7
2020-01-29 20:02:45 +00:00
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends: base >= 4.12 && < 5
, bytestring
2020-01-29 21:42:23 +00:00
, filepath
2020-01-29 20:02:45 +00:00
, hspec
, hspec-discover
, safe-exceptions >= 0.1
, streamly >= 0.7
, streamly-bytestring >= 0.1.0.1
, streamly-filesystem
, temporary
, word8 >= 0.1.3
default-language: Haskell2010
GHC-Options: -Wall -threaded -rtsopts -with-rtsopts=-N
2020-01-29 15:38:35 +00:00
source-repository head
type: git
location: https://github.com/hasufell/streamly-filesystem