This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
git.cabal
101 lines (96 loc) · 3.4 KB
/
git.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
Name: git
Version: 0.3.0
Synopsis: Git operations in haskell
Description:
.
A Haskell implementation of git storage operations, allowing users
to manipulate git repositories (read and write).
.
This implementation is fully interoperable with the main C implementation.
.
This is strictly only manipulating the git store (what's inside the .git directory),
and doesn't do anything with the index or your working directory files.
.
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <[email protected]>
Author: Vincent Hanquez <[email protected]>
Maintainer: Vincent Hanquez <[email protected]>
Category: Development
Stability: experimental
Build-Type: Simple
Homepage: https://github.com/vincenthz/hs-git
tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2
Cabal-Version: >=1.8
data-files: README.md
extra-source-files: tests/*.hs
Library
Build-Depends: base >= 4 && < 5
, basement
, bytestring >= 0.9
, containers
, memory >= 0.13
, cryptonite >= 0.22
, vector
, random
, zlib
, zlib-bindings >= 0.1 && < 0.2
, hourglass >= 0.2
, unix-compat
, utf8-string
-- to remove
, system-filepath
, system-fileio
Exposed-modules: Data.Git
Data.Git.Monad
Data.Git.Types
Data.Git.Storage
Data.Git.Storage.PackIndex
Data.Git.Storage.Pack
Data.Git.Storage.Object
Data.Git.Storage.Loose
Data.Git.Named
Data.Git.Delta
Data.Git.Ref
Data.Git.Revision
Data.Git.Repository
Data.Git.Diff
Data.Git.Diff.Patience
Data.Git.Index
Other-modules: Data.Git.Internal
Data.Git.Imports
Data.Git.OS
Data.Git.Config
Data.Git.Storage.FileReader
Data.Git.Storage.FileWriter
Data.Git.Storage.CacheFile
Data.Git.Path
Data.Git.Parser
Data.Git.WorkTree
ghc-options: -Wall -fno-warn-unused-imports
-- -fno-warn-missing-signatures
Test-Suite test-unit
type: exitcode-stdio-1.0
hs-source-dirs: tests
Main-Is: Tests.hs
Build-depends: base >= 3 && < 7
, bytestring
, tasty
, tasty-quickcheck
, hourglass
, git
Test-Suite test-repository
type: exitcode-stdio-1.0
hs-source-dirs: tests
Main-Is: Repo.hs
other-modules: Monad
Build-depends: base >= 3 && < 7
, bytestring
, tasty
, tasty-quickcheck
, hourglass
, bytedump >= 1.0
, git
source-repository head
type: git
location: https://github.com/vincenthz/hs-git