-
Notifications
You must be signed in to change notification settings - Fork 1
/
proof-assistant-bot.cabal
95 lines (87 loc) · 3.62 KB
/
proof-assistant-bot.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
cabal-version: 2.4
name: proof-assistant-bot
version: 0.2.2
synopsis: Telegram bot for proof assistants
description: Bridge between Telegram Bot and several proof assistants.
.
Currently following proof assistant supported: Agda, Arend, Coq, Idris 2, Lean, Rzk
.
See README.md for more details.
category: Dependent types
homepage: https://github.com/swamp-agr/proof-assistant-bot/
bug-reports: https://github.com/swamp-agr/proof-assistant-bot/issues
license: MIT
license-file: LICENSE
author: Andrey Prokopenko
maintainer: [email protected]
extra-source-files: CHANGELOG.md
README.md
library
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
build-depends: base < 4.18
, async
, bytestring
, dhall
, directory
, filepath
, mtl >= 2.3.1
, process
, rzk
, stm
, telegram-bot-api >= 7.4
, telegram-bot-simple >= 0.14.1
, text
, unix
, unordered-containers
-- interpreters
, Agda >= 2.6.4
exposed-modules: Proof.Assistant.Agda
, Proof.Assistant.Alloy
, Proof.Assistant.Arend
, Proof.Assistant.Idris
, Proof.Assistant.Lean
, Proof.Assistant.Rzk
, Proof.Assistant.Bot
, Proof.Assistant.Helpers
, Proof.Assistant.Interpreter
, Proof.Assistant.RefreshFile
, Proof.Assistant.Request
, Proof.Assistant.ResourceLimit
, Proof.Assistant.Response
, Proof.Assistant.State
, Proof.Assistant.Settings
, Proof.Assistant.Transport
, Proof.Assistant.Version
, Agda.Interaction.Command
, Agda.Interaction.Command.EvalIn
, Agda.Interaction.Command.EvalTerm
, Agda.Interaction.Command.GiveMeta
, Agda.Interaction.Command.Internal.Parser
, Agda.Interaction.Command.RefineMeta
, Agda.Interaction.Command.Reload
, Agda.Interaction.Command.RetryConstraints
, Agda.Interaction.Command.ShowConstraints
, Agda.Interaction.Command.ShowContext
, Agda.Interaction.Command.ShowMetas
, Agda.Interaction.Command.ShowScope
, Agda.Interaction.Command.TypeIn
, Agda.Interaction.Command.TypeOf
, Agda.Interaction.State
, Idris.Interaction.Command
autogen-modules:
Paths_proof_assistant_bot
other-modules:
Paths_proof_assistant_bot
executable proof-assistant-bot
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base < 4.18
, proof-assistant-bot
hs-source-dirs: app
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010