diff options
author | Vincent Ambo <tazjin@google.com> | 2019-08-19T23·17+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-08-19T23·17+0100 |
commit | 11fcf6229751eb266485cbba78d30aced1787d14 (patch) | |
tree | 025f02ca1d1288949f69468e32d9efe795db02a7 /services/tazblog/tazblog.cabal | |
parent | 1d5b53abf8da7b00ac1e58d43a30f738c157b9d3 (diff) |
chore(tazblog): Replace BlogDB with stubs for DNS-based storage r/44
Removes acid-state specific code and the former BlogDB module, in its stead the new BlogStorage module contains stubs for the functions that will be filled in with DNS-based storage. This code is unformatted and will not currently serve a working blog.
Diffstat (limited to 'services/tazblog/tazblog.cabal')
-rw-r--r-- | services/tazblog/tazblog.cabal | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/services/tazblog/tazblog.cabal b/services/tazblog/tazblog.cabal index 4e784f49b1b5..ac0c418e32fa 100644 --- a/services/tazblog/tazblog.cabal +++ b/services/tazblog/tazblog.cabal @@ -1,9 +1,9 @@ Name: tazblog -Version: 5.1.3 +Version: 6.0.0 Synopsis: Tazjin's Blog License: MIT Author: Vincent Ambo -Maintainer: tazjin@gmail.com +Maintainer: mail@tazj.in Category: Web blog Build-type: Simple cabal-version: >= 1.10 @@ -12,7 +12,7 @@ library hs-source-dirs: src default-language: Haskell2010 ghc-options: -W - exposed-modules: Blog, BlogDB, Locales, Server, RSS + exposed-modules: Blog, BlogStore, Locales, Server, RSS build-depends: base, bytestring, happstack-server, @@ -24,9 +24,6 @@ library old-locale, time, base64-bytestring, - acid-state, - ixset, - safecopy, mtl, transformers, network, @@ -53,18 +50,6 @@ executable tazblog default-language: Haskell2010 ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base, - acid-state, - tazblog, - options, - network - -executable tazblog-db - hs-source-dirs: db - main-is: Main.hs - default-language: Haskell2010 - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: base, - acid-state, tazblog, options, network |