-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsyncron.cabal
More file actions
26 lines (24 loc) · 1.07 KB
/
syncron.cabal
File metadata and controls
26 lines (24 loc) · 1.07 KB
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
-- Initial syncron.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: syncron
version: 0.0.2.0
synopsis: A simple tool that synchronizes two folders real-time
-- description:
license: BSD3
license-file: LICENSE
author: TOSPIO
maintainer: newelevenken@163.com
-- copyright:
category: System
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable syncron
main-is: Main.hs
other-modules: WildMatch
other-extensions: TypeFamilies, ViewPatterns
include-dirs: src
c-sources: src/wildmatch/wildmatch.c
build-depends: base >=4.8 && <4.9, bytestring >=0.10.6.0, containers >=0.5.6.2, directory >=1.2 && <1.3, filepath >=1.4 && <1.5, MissingH >=1.3 && <1.4, unordered-containers >=0.2 && <0.3, hinotify >=0.3 && <0.4, process >=1.2 && <1.3, optparse-applicative >=0.11, parsec >=3.1.9
hs-source-dirs: src
default-language: Haskell2010