Files
tricu/tricu.cabal

135 lines
2.2 KiB
Plaintext
Raw Normal View History

cabal-version: 1.12
2024-12-29 08:29:25 -06:00
name: tricu
version: 1.1.0
description: A language for exploring Tree Calculus
author: James Eversole
maintainer: james@eversole.co
copyright: James Eversole
license: ISC
license-file: LICENSE
build-type: Simple
extra-source-files:
2024-12-18 19:41:12 -06:00
README.md
2024-12-29 08:29:25 -06:00
executable tricu
main-is: Main.hs
hs-source-dirs:
src
default-extensions:
LambdaCase
MultiWayIf
OverloadedStrings
ScopedTypeVariables
ghc-options:
-Wall
-Wcompat
-Wunused-imports
-Wunused-top-binds
-Wunused-local-binds
-Wunused-matches
-Wredundant-constraints
-threaded
-rtsopts
-with-rtsopts=-N
-optl-pthread
-fPIC
build-depends:
base >=4.7
2025-05-22 16:13:57 -05:00
, ansi-terminal
, base16-bytestring
2025-05-22 16:13:57 -05:00
, base64-bytestring
, bytestring
2026-05-11 15:29:12 -05:00
, optparse-applicative
, containers
2025-05-22 16:13:57 -05:00
, cryptonite
, directory
2025-01-27 16:46:41 -06:00
, exceptions
, filepath
2025-05-22 16:13:57 -05:00
, fsnotify
, haskeline
, http-types
, megaparsec
2026-05-05 12:43:03 -05:00
, memory
, mtl
, servant
2025-05-22 16:13:57 -05:00
, sqlite-simple
, stm
2025-05-22 16:13:57 -05:00
, tasty
, tasty-hunit
, text
2025-05-22 16:13:57 -05:00
, time
, transformers
, vector
, wai
, warp
2025-05-22 16:13:57 -05:00
, zlib
other-modules:
ContentStore
Eval
FileEval
IODriver
Lexer
Parser
Paths_tricu
REPL
Research
Server
2026-05-05 20:16:27 -05:00
Wire
default-language: Haskell2010
2024-12-29 08:29:25 -06:00
test-suite tricu-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test, src
default-extensions:
2025-01-21 14:21:47 -06:00
LambdaCase
MultiWayIf
OverloadedStrings
2025-05-22 16:13:57 -05:00
ScopedTypeVariables
build-depends:
2025-05-22 16:13:57 -05:00
base >=4.7
, ansi-terminal
, base16-bytestring
2025-05-22 16:13:57 -05:00
, base64-bytestring
, bytestring
2026-05-11 15:29:12 -05:00
, optparse-applicative
, containers
2025-05-22 16:13:57 -05:00
, cryptonite
, directory
2025-01-27 16:46:41 -06:00
, exceptions
, filepath
2025-05-22 16:13:57 -05:00
, fsnotify
, haskeline
, http-types
, megaparsec
2026-05-05 12:43:03 -05:00
, memory
, mtl
, servant
2025-05-22 16:13:57 -05:00
, sqlite-simple
, stm
, tasty
, tasty-hunit
, temporary
, text
2025-05-22 16:13:57 -05:00
, time
, transformers
, unix
, vector
, wai
, warp
2025-05-22 16:13:57 -05:00
, zlib
default-language: Haskell2010
other-modules:
ContentStore
Eval
FileEval
IODriver
Lexer
Parser
Paths_tricu
REPL
Research
Server
2026-05-05 20:16:27 -05:00
Wire