2024-12-18 18:55:51 -06:00
|
|
|
cabal-version: 1.12
|
|
|
|
|
|
2024-12-29 08:29:25 -06:00
|
|
|
name: tricu
|
2026-05-25 12:43:15 -05:00
|
|
|
version: 2.0.0
|
2026-05-05 14:51:42 -05:00
|
|
|
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
|
2026-05-25 12:43:15 -05:00
|
|
|
tricu.workspace
|
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
|
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-19 17:00:36 -05:00
|
|
|
, network
|
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
|
2025-05-22 16:13:57 -05:00
|
|
|
, zlib
|
2024-12-18 18:55:51 -06:00
|
|
|
other-modules:
|
2026-05-25 12:43:15 -05:00
|
|
|
Check
|
|
|
|
|
Check.Core
|
|
|
|
|
Check.IO
|
2026-05-05 18:30:14 -05:00
|
|
|
ContentStore
|
2026-05-25 12:43:15 -05:00
|
|
|
ContentStore.Alias
|
|
|
|
|
ContentStore.Arboricx
|
|
|
|
|
ContentStore.Bundle
|
|
|
|
|
ContentStore.Filesystem
|
|
|
|
|
ContentStore.Object
|
|
|
|
|
ContentStore.Resolver
|
|
|
|
|
ContentStore.ViewTree
|
|
|
|
|
ContentStore.ViewContract
|
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
|
2026-05-25 12:43:15 -05:00
|
|
|
Module.Manifest
|
|
|
|
|
Module.Resolver
|
|
|
|
|
Module.Workspace
|
2024-12-18 18:55:51 -06:00
|
|
|
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-05 20:16:27 -05:00
|
|
|
Wire
|
2024-12-18 18:55:51 -06:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
2026-05-15 21:41:19 -05:00
|
|
|
benchmark tricu-bench
|
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
|
main-is: Bench.hs
|
|
|
|
|
hs-source-dirs: bench, src
|
|
|
|
|
default-extensions:
|
|
|
|
|
LambdaCase
|
|
|
|
|
MultiWayIf
|
|
|
|
|
OverloadedStrings
|
|
|
|
|
ScopedTypeVariables
|
|
|
|
|
build-depends:
|
|
|
|
|
base >=4.7
|
|
|
|
|
, ansi-terminal
|
|
|
|
|
, base16-bytestring
|
|
|
|
|
, base64-bytestring
|
|
|
|
|
, bytestring
|
|
|
|
|
, containers
|
|
|
|
|
, criterion
|
|
|
|
|
, cryptonite
|
|
|
|
|
, directory
|
|
|
|
|
, exceptions
|
|
|
|
|
, filepath
|
|
|
|
|
, megaparsec
|
|
|
|
|
, memory
|
|
|
|
|
, mtl
|
2026-05-19 17:00:36 -05:00
|
|
|
, network
|
2026-05-15 21:41:19 -05:00
|
|
|
, text
|
|
|
|
|
, time
|
|
|
|
|
, transformers
|
|
|
|
|
, vector
|
|
|
|
|
, zlib
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
other-modules:
|
|
|
|
|
ApplyStats
|
|
|
|
|
ContentStore
|
2026-05-25 12:43:15 -05:00
|
|
|
ContentStore.Alias
|
|
|
|
|
ContentStore.Arboricx
|
|
|
|
|
ContentStore.Bundle
|
|
|
|
|
ContentStore.Filesystem
|
|
|
|
|
ContentStore.Object
|
|
|
|
|
ContentStore.Resolver
|
|
|
|
|
ContentStore.ViewTree
|
|
|
|
|
ContentStore.ViewContract
|
2026-05-15 21:41:19 -05:00
|
|
|
Eval
|
|
|
|
|
FileEval
|
|
|
|
|
IODriver
|
|
|
|
|
Lexer
|
2026-05-25 12:43:15 -05:00
|
|
|
Module.Manifest
|
|
|
|
|
Module.Resolver
|
|
|
|
|
Module.Workspace
|
2026-05-15 21:41:19 -05:00
|
|
|
Parser
|
|
|
|
|
Paths_tricu
|
|
|
|
|
Research
|
|
|
|
|
Wire
|
|
|
|
|
|
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
|
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-19 17:00:36 -05:00
|
|
|
, network
|
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
|
2025-05-22 16:13:57 -05:00
|
|
|
, zlib
|
2024-12-18 18:55:51 -06:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
other-modules:
|
2026-05-25 12:43:15 -05:00
|
|
|
Check
|
|
|
|
|
Check.Core
|
|
|
|
|
Check.IO
|
2026-05-05 18:30:14 -05:00
|
|
|
ContentStore
|
2026-05-25 12:43:15 -05:00
|
|
|
ContentStore.Alias
|
|
|
|
|
ContentStore.Arboricx
|
|
|
|
|
ContentStore.Bundle
|
|
|
|
|
ContentStore.Filesystem
|
|
|
|
|
ContentStore.Object
|
|
|
|
|
ContentStore.Resolver
|
|
|
|
|
ContentStore.ViewTree
|
|
|
|
|
ContentStore.ViewContract
|
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
|
2026-05-25 12:43:15 -05:00
|
|
|
Module.Manifest
|
|
|
|
|
Module.Resolver
|
|
|
|
|
Module.Workspace
|
2024-12-18 18:55:51 -06:00
|
|
|
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-05 20:16:27 -05:00
|
|
|
Wire
|