streamly-filesystem/streamly-filesystem.cabal

61 lines
2.3 KiB
Plaintext
Raw 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 15:38:35 +00:00
if os(windows) -- not supported yet
build-depends: unbuildable<0
buildable: False
exposed-modules: Streamly.External.FileSystem.Handle.Posix
-- other-modules:
-- other-extensions:
build-depends: base >= 4.12 && < 5
, bytestring >= 0.10
, hpath-directory >= 0.13
, safe-exceptions >= 0.1
, streamly >= 0.7
, streamly-bytestring >= 0.1.0.1
, unix >= 2.7
, 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
if os(windows) -- not supported yet
build-depends: unbuildable<0
buildable: False
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends: base >= 4.12 && < 5
, bytestring
, hpath-directory >= 0.13
, hspec
, hspec-discover
, safe-exceptions >= 0.1
, streamly >= 0.7
, streamly-bytestring >= 0.1.0.1
, streamly-filesystem
, temporary
, unix >= 2.7
, 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