forked from omelkonian/agda-dependencies
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagda-deps.cabal
More file actions
83 lines (79 loc) · 3.65 KB
/
Copy pathagda-deps.cabal
File metadata and controls
83 lines (79 loc) · 3.65 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
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
cabal-version: 3.0
name: agda-deps
version: 1.1
author: Orestis Melkonian, Carlos Tomé Cortiñas, and Martín Ceresa
category: Language, Compiler
build-type: Simple
synopsis: Reporting lemma dependencies of Agda proofs.
extra-doc-files: README.md
extra-source-files: src/AgdaDeps/templates/deps.html.tmpl
src/AgdaDeps/templates/views/ide-three-pane.html.tmpl
src/AgdaDeps/templates/views/module-dag-pods.html.tmpl
src/AgdaDeps/templates/views/source-centric.html.tmpl
src/AgdaDeps/templates/views/notion-doc.html.tmpl
src/AgdaDeps/templates/views/wiki-backlinks.html.tmpl
src/AgdaDeps/templates/views/sigma.html.tmpl
src/AgdaDeps/templates/views/big-module-dag-pods.html.tmpl
src/AgdaDeps/templates/views/critical-path-holes.html.tmpl
src/AgdaDeps/templates/views/progress-dashboard.html.tmpl
src/AgdaDeps/templates/views/cartographic-atlas.html.tmpl
src/AgdaDeps/templates/views/sunburst-hierarchy.html.tmpl
src/AgdaDeps/templates/views/reading-order-narrative.html.tmpl
src/AgdaDeps/templates/views/pixel-grid-overview.html.tmpl
source-repository head
type: git
location: https://github.com/input-output-hk/agda-dependencies.git
-- agda-deps is the Agda compiler backend that emits graph.json.
executable agda-deps
-- -with-rtsopts=-F1.2 caps old-gen heap growth at 1.2x live data (GHC
-- default is 2.0x) to trim peak residency on large corpora (~11% measured);
-- -rtsopts lets callers override at runtime via +RTS -F.
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-F1.2
hs-source-dirs: src
main-is: Main.hs
other-modules: Paths_agda_deps
BuildInfo
BuildInfoTH
AgdaDeps.Util
AgdaDeps.Logging
AgdaDeps.Csr
AgdaDeps.Config
AgdaDeps.Layout
AgdaDeps.Options
AgdaDeps.Deps
AgdaDeps.FragmentCache
AgdaDeps.SerialiseCache
AgdaDeps.Source
AgdaDeps.Backend.Dot
AgdaDeps.Backend.Wire
AgdaDeps.Backend.GraphJson
AgdaDeps.Backend.Html
AgdaDeps.Backend.Json
AgdaDeps.Backend
AgdaDeps.Help
AgdaDeps.ModuleExplorer
AgdaDeps.Driver
AgdaDeps.LibResolve
AgdaDeps.Precompute
AgdaDeps.SkipAgda
AgdaDeps.TermCanon
autogen-modules: Paths_agda_deps
build-depends: base >= 4.10 && < 4.23,
Agda >= 2.8 && < 3,
aeson >= 2.0 && < 3,
deepseq >= 1.4.4 && < 1.6,
text,
containers,
unordered-containers,
file-embed,
filepath,
graphviz >= 2999.20,
fgl,
directory,
mtl,
transformers,
bytestring,
process >= 1.6 && < 2,
template-haskell,
yaml >= 0.11 && < 0.12,
zlib,