2024-12-18 18:55:51 -06:00
|
|
|
cabal-version: 1.12
|
|
|
|
|
|
2024-12-29 08:29:25 -06:00
|
|
|
name: tricu
|
2026-05-05 14:51:42 -05:00
|
|
|
version: 1.1.0
|
|
|
|
|
description: A language for exploring Tree Calculus
|
2024-12-18 18:55:51 -06:00
|
|
|
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-18 18:55:51 -06:00
|
|
|
|
2024-12-29 08:29:25 -06:00
|
|
|
executable tricu
|
2024-12-18 18:55:51 -06:00
|
|
|
main-is: Main.hs
|
|
|
|
|
hs-source-dirs:
|
2026-05-05 18:30:14 -05:00
|
|
|
src
|
2024-12-18 18:55:51 -06:00
|
|
|
default-extensions:
|
2026-05-05 18:30:14 -05:00
|
|
|
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
|
2024-12-18 18:55:51 -06:00
|
|
|
build-depends:
|
|
|
|
|
base >=4.7
|
2025-05-22 16:13:57 -05:00
|
|
|
, ansi-terminal
|
2026-05-05 14:51:42 -05:00
|
|
|
, base16-bytestring
|
2025-05-22 16:13:57 -05:00
|
|
|
, base64-bytestring
|
|
|
|
|
, bytestring
|
2026-05-11 15:29:12 -05:00
|
|
|
, optparse-applicative
|
2024-12-18 18:55:51 -06:00
|
|
|
, containers
|
2025-05-22 16:13:57 -05:00
|
|
|
, cryptonite
|
|
|
|
|
, directory
|
2025-01-27 16:46:41 -06:00
|
|
|
, exceptions
|
2025-01-30 17:56:46 -06:00
|
|
|
, filepath
|
2025-05-22 16:13:57 -05:00
|
|
|
, fsnotify
|
2024-12-27 20:46:30 -06:00
|
|
|
, haskeline
|
2026-05-06 14:09:56 -05:00
|
|
|
, http-types
|
2024-12-18 18:55:51 -06:00
|
|
|
, megaparsec
|
2026-05-05 12:43:03 -05:00
|
|
|
, memory
|
2024-12-18 18:55:51 -06:00
|
|
|
, mtl
|
2026-05-06 14:09:56 -05:00
|
|
|
, servant
|
2025-05-22 16:13:57 -05:00
|
|
|
, sqlite-simple
|
2026-05-06 14:09:56 -05:00
|
|
|
, stm
|
2025-05-22 16:13:57 -05:00
|
|
|
, tasty
|
|
|
|
|
, tasty-hunit
|
2024-12-31 10:00:52 -06:00
|
|
|
, text
|
2025-05-22 16:13:57 -05:00
|
|
|
, time
|
2025-02-02 10:50:28 -06:00
|
|
|
, transformers
|
2026-05-11 19:53:37 -05:00
|
|
|
, vector
|
2026-05-06 14:09:56 -05:00
|
|
|
, wai
|
|
|
|
|
, warp
|
2025-05-22 16:13:57 -05:00
|
|
|
, zlib
|
2024-12-18 18:55:51 -06:00
|
|
|
other-modules:
|
2026-05-05 18:30:14 -05:00
|
|
|
ContentStore
|
2024-12-18 18:55:51 -06:00
|
|
|
Eval
|
2025-01-01 08:17:05 -06:00
|
|
|
FileEval
|
2026-05-12 18:38:24 -05:00
|
|
|
IODriver
|
2024-12-18 18:55:51 -06:00
|
|
|
Lexer
|
|
|
|
|
Parser
|
2026-05-05 18:30:14 -05:00
|
|
|
Paths_tricu
|
2024-12-20 11:38:09 -06:00
|
|
|
REPL
|
2024-12-18 18:55:51 -06:00
|
|
|
Research
|
2026-05-06 14:09:56 -05:00
|
|
|
Server
|
2026-05-05 20:16:27 -05:00
|
|
|
Wire
|
2024-12-18 18:55:51 -06:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
2024-12-29 08:29:25 -06:00
|
|
|
test-suite tricu-tests
|
2024-12-18 18:55:51 -06:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
|
main-is: Spec.hs
|
|
|
|
|
hs-source-dirs: test, src
|
2024-12-31 10:00:52 -06:00
|
|
|
default-extensions:
|
2025-01-21 14:21:47 -06:00
|
|
|
LambdaCase
|
2025-01-19 14:41:25 -06:00
|
|
|
MultiWayIf
|
2024-12-31 10:00:52 -06:00
|
|
|
OverloadedStrings
|
2025-05-22 16:13:57 -05:00
|
|
|
ScopedTypeVariables
|
2024-12-18 18:55:51 -06:00
|
|
|
build-depends:
|
2025-05-22 16:13:57 -05:00
|
|
|
base >=4.7
|
|
|
|
|
, ansi-terminal
|
2026-05-05 14:51:42 -05:00
|
|
|
, base16-bytestring
|
2025-05-22 16:13:57 -05:00
|
|
|
, base64-bytestring
|
|
|
|
|
, bytestring
|
2026-05-11 15:29:12 -05:00
|
|
|
, optparse-applicative
|
2024-12-18 18:55:51 -06:00
|
|
|
, containers
|
2025-05-22 16:13:57 -05:00
|
|
|
, cryptonite
|
|
|
|
|
, directory
|
2025-01-27 16:46:41 -06:00
|
|
|
, exceptions
|
2025-01-30 17:56:46 -06:00
|
|
|
, filepath
|
2025-05-22 16:13:57 -05:00
|
|
|
, fsnotify
|
2024-12-27 20:46:30 -06:00
|
|
|
, haskeline
|
2026-05-06 14:09:56 -05:00
|
|
|
, http-types
|
2024-12-18 18:55:51 -06:00
|
|
|
, megaparsec
|
2026-05-05 12:43:03 -05:00
|
|
|
, memory
|
2024-12-18 18:55:51 -06:00
|
|
|
, mtl
|
2026-05-06 14:09:56 -05:00
|
|
|
, servant
|
2025-05-22 16:13:57 -05:00
|
|
|
, sqlite-simple
|
2026-05-06 14:09:56 -05:00
|
|
|
, stm
|
2024-12-18 18:55:51 -06:00
|
|
|
, tasty
|
|
|
|
|
, tasty-hunit
|
2026-05-12 18:38:24 -05:00
|
|
|
, temporary
|
2024-12-31 10:00:52 -06:00
|
|
|
, text
|
2025-05-22 16:13:57 -05:00
|
|
|
, time
|
2025-02-02 10:50:28 -06:00
|
|
|
, transformers
|
2026-05-12 18:38:24 -05:00
|
|
|
, unix
|
2026-05-11 19:53:37 -05:00
|
|
|
, vector
|
2026-05-06 14:09:56 -05:00
|
|
|
, wai
|
2026-05-07 21:41:50 -05:00
|
|
|
, warp
|
2025-05-22 16:13:57 -05:00
|
|
|
, zlib
|
2024-12-18 18:55:51 -06:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
other-modules:
|
2026-05-05 18:30:14 -05:00
|
|
|
ContentStore
|
2024-12-18 18:55:51 -06:00
|
|
|
Eval
|
2025-01-01 08:17:05 -06:00
|
|
|
FileEval
|
2026-05-12 18:38:24 -05:00
|
|
|
IODriver
|
2024-12-18 18:55:51 -06:00
|
|
|
Lexer
|
|
|
|
|
Parser
|
2026-05-05 18:30:14 -05:00
|
|
|
Paths_tricu
|
2024-12-20 11:38:09 -06:00
|
|
|
REPL
|
2024-12-18 18:55:51 -06:00
|
|
|
Research
|
2026-05-06 14:09:56 -05:00
|
|
|
Server
|
2026-05-05 20:16:27 -05:00
|
|
|
Wire
|