Merge content store

This commit is contained in:
2025-05-22 16:13:57 -05:00
parent 3717942589
commit 43e83be9a4
13 changed files with 1000 additions and 217 deletions

View File

@ -1,7 +1,7 @@
cabal-version: 1.12
name: tricu
version: 0.19.0
version: 0.20.0
description: A micro-language for exploring Tree Calculus
author: James Eversole
maintainer: james@eversole.co
@ -21,18 +21,32 @@ executable tricu
LambdaCase
MultiWayIf
OverloadedStrings
ScopedTypeVariables
ghc-options: -threaded -rtsopts -with-rtsopts=-N -optl-pthread -fPIC
build-depends:
base >=4.7
, aeson
, ansi-terminal
, base64-bytestring
, bytestring
, cereal
, cmdargs
, containers
, cryptonite
, directory
, exceptions
, filepath
, fsnotify
, haskeline
, megaparsec
, mtl
, sqlite-simple
, tasty
, tasty-hunit
, text
, time
, transformers
, zlib
other-modules:
Eval
FileEval
@ -51,20 +65,31 @@ test-suite tricu-tests
LambdaCase
MultiWayIf
OverloadedStrings
ScopedTypeVariables
build-depends:
base
base >=4.7
, aeson
, ansi-terminal
, base64-bytestring
, bytestring
, cereal
, cmdargs
, containers
, cryptonite
, directory
, exceptions
, filepath
, fsnotify
, haskeline
, megaparsec
, mtl
, sqlite-simple
, tasty
, tasty-hunit
, tasty-quickcheck
, text
, time
, transformers
, zlib
default-language: Haskell2010
other-modules:
Eval