This commit is contained in:
crumbtoo
2024-04-23 12:38:03 -06:00
parent 447c8ceebf
commit 3c234e6002
12 changed files with 315 additions and 8 deletions

View File

@@ -78,6 +78,9 @@ library
hs-source-dirs: src
default-language: GHC2021
ghc-options:
-fdefer-typed-holes
default-extensions:
OverloadedStrings
TypeFamilies
@@ -87,12 +90,14 @@ library
DerivingVia
StandaloneDeriving
DerivingStrategies
PartialTypeSignatures
executable rlpc
import: warnings
main-is: Main.hs
other-modules: RlpDriver
, CoreDriver
, Server
build-depends: base >=4.17.0.0 && <4.20.0.0
, rlp
@@ -101,6 +106,8 @@ executable rlpc
, unordered-containers >= 0.2.20 && < 0.3
, lens >=5.2.3 && <6.0
, text >= 2.0.2 && < 2.3
, aeson
, websockets
hs-source-dirs: app
default-language: GHC2021