streamly-fsnotify.cabal 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. cabal-version: 2.2
  2. name: streamly-fsnotify
  3. -- PVP summary: +-+------- breaking API changes
  4. -- | | +----- non-breaking API additions
  5. -- | | | +--- code changes with no API change
  6. version: 1.0.0.1
  7. synopsis: Folder watching as a Streamly stream.
  8. description: Provides Streamly streams for both single-level and
  9. recursive folder watching. Also contains a principled and
  10. compositional system for filtering file system events.
  11. homepage: https://notabug.org/koz.ross/streamly-fsnotify
  12. license: GPL-3.0-or-later
  13. license-file: LICENSE.md
  14. author: Koz Ross
  15. maintainer: koz.ross@retro-freedom.nz
  16. copyright: (C) Koz Ross 2019
  17. category: Streamly
  18. tested-with: GHC == 8.6.5
  19. build-type: Simple
  20. extra-source-files: CHANGELOG.md,
  21. README.md
  22. library
  23. exposed-modules: Streamly.FSNotify
  24. build-depends: base >= 4.9 && < 5,
  25. streamly >= 0.7.0 && < 0.8.0,
  26. fsnotify >= 0.3.0.1 && < 0.4.0.0,
  27. paths >= 0.2.0.0 && < 0.3.0.0,
  28. semirings >= 0.5.2 && < 0.6.0,
  29. text >= 1.2.4.0 && < 1.3.0.0,
  30. time >= 1.1 && < 2.0.0
  31. hs-source-dirs: src
  32. default-language: Haskell2010