-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathftdi.cabal
57 lines (49 loc) · 2.09 KB
/
ftdi.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
51
52
53
54
55
56
57
name: ftdi
version: 1.0.0.0
cabal-version: >=1.6
build-type: Simple
stability: experimental
author: Roel van Dijk <vandijk.roel@gmail.com>, Ben Gamari <ben@smart-cactus.org>
maintainer: Ben Gamari <ben@smart-cactus.org>
copyright: (c) 2009, 2010 Roel van Dijk, (c) 2018 Ben Gamari
license: BSD3
license-file: LICENSE
category: System
synopsis: A thin layer over USB to communicate with FTDI chips
description:
This library enables you to communicate with FTDI devices. It is
implemented as a lightweight wrapper around the usb library.
tested-with: GHC==8.6.1, GHC==8.4.3, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3
source-repository head
type: git
location: http://github.com/bgamari/ftdi2
-------------------------------------------------------------------------------
library
exposed-modules: System.FTDI
, System.FTDI.MPSSE
other-modules: System.FTDI.Internal
, System.FTDI.Utils
build-depends: base >= 4.5 && < 5.0
, base-unicode-symbols >= 0.1.1 && < 0.3
, bytestring >= 0.10 && < 0.11
, transformers >= 0.5 && < 0.6
, usb >= 1.3 && < 1.4
, vector >= 0.12 && < 0.13
, async >= 2.2 && < 2.3
ghc-options: -Wall
-------------------------------------------------------------------------------
test-suite test
main-is: test.hs
type: exitcode-stdio-1.0
other-modules: System.FTDI
, System.FTDI.Internal
, System.FTDI.Properties
, System.FTDI.Utils
, System.FTDI.Utils.Properties
ghc-options: -Wall -fno-warn-orphans
build-depends: derive >= 2.3 && < 2.7
, QuickCheck >= 2.11 && < 2.13
, random >= 1.0.0 && < 1.2
, tagged >= 0.8 && < 0.9
, test-framework >= 0.8 && < 0.9
, test-framework-quickcheck2 >= 0.3 && < 0.4