-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsansa.cabal
50 lines (49 loc) · 1.99 KB
/
sansa.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
name: sansa
version: 0.1.0.0
synopsis: RPC frontend for aria2
license: BSD2
license-file: LICENSE
author: Hans-Peter Deifel
maintainer: [email protected]
category: Network
build-type: Simple
cabal-version: >=1.10
executable sansa
main-is: Main.hs
other-modules: JsonRPC,
Aria2.Commands,
Aria2.Types,
Data.ByteString.Json,
Data.Units,
Network.URI.Json,
Sansa.AsciiStatus,
Sansa.CommandsCommon,
Sansa.Commands,
Sansa.Commands.Add,
Sansa.Commands.AddFromFile,
Sansa.Commands.AddTorrent,
Sansa.Commands.Options,
Sansa.Commands.Pause,
Sansa.Commands.Purge,
Sansa.Commands.Unpause,
Sansa.Commands.Stop,
Sansa.Commands.List,
Sansa.Commands.Status,
Sansa.Commands.CommonOpts
build-depends: HTTP >= 4000.2 && < 4000.3
, aeson >= 0.8 && <0.10
, ansi-wl-pprint >= 0.6 && <0.7
, base >=4.7 && <4.9
, base64-bytestring >= 1.0 && <1.1
, bytestring >= 0.10 && <0.11
, directory >= 1.2 && <1.3
, monads-tf >=0.1 && <0.2
, network-uri >= 2.6 && <2.7
, optparse-applicative >= 0.11 && < 0.12
, text >= 1.2 && <1.3
, time >= 1.4 && <1.6
, transformers >= 0.4 && <0.5
, units >= 2.2 && <2.4
, unordered-containers >= 0.2 && <0.3
hs-source-dirs: src
default-language: Haskell2010