diff options
author | stuebinm | 2021-02-17 00:20:51 +0100 |
---|---|---|
committer | stuebinm | 2021-02-17 15:39:51 +0100 |
commit | 1936b18b6139d4519f607561c96834d061583cd5 (patch) | |
tree | 215c3381d468925dcd5030885baf1a4666a137bf /picarones-hs.cabal |
initial commit
So far, it is fairly inefficient — for each message, the global
state of the application is changed (i.e. a read-write action
on a HashMap). Since clients can't change rooms after joining
anyways, this should probably be changed.
Diffstat (limited to '')
-rw-r--r-- | picarones-hs.cabal | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/picarones-hs.cabal b/picarones-hs.cabal new file mode 100644 index 0000000..deb2969 --- /dev/null +++ b/picarones-hs.cabal @@ -0,0 +1,31 @@ +cabal-version: >=1.10 +-- Initial package description 'picarones-hs' generated by 'cabal +-- init'. For further documentation, see +-- http://haskell.org/cabal/users-guide/ + +name: picarones-hs +version: 0.1.0.0 +-- synopsis: +-- description: +-- bug-reports: +-- license: +license-file: LICENSE +author: stuebinm +maintainer: stuebinm@disroot.org +-- copyright: +-- category: +build-type: Simple + +executable picarones-hs + main-is: Main.lhs + -- other-modules: + -- other-extensions: + ghc-options: -threaded + build-depends: base == 4.*, + text, + aeson, + websockets, + bytestring, + unordered-containers + -- hs-source-dirs: + default-language: Haskell2010 |